菜鸟教程小白 发表于 2022-12-13 15:21:04

ios - 在 iOS 上使用 Whatsapp url 方案调用


                                            <p><p>我们可以使用 URL Scheme 打开 WhatsApp 的对话/聊天窗口:</p>

<pre><code>      if schemeAvailable(&#34;whatsapp://&#34;)
    {
      UIApplication.sharedApplication().openURL(NSURL(string: &#34;whatsapp://send?abid=68&#34;)!)//68 is the example, addressbook contact id
    }
    else
    {
      UIApplication.sharedApplication().openURL(NSURL(string: &#34;https://itunes.apple.com/app/whatsapp-messenger/id310633997&#34;)!)
    }
</code></pre>

<p>我希望 url 方案开始通话?我在 WhatsApp 官方页面或任何博客上都没有找到任何文档或引用资料。
我们可以这样做还是不可能?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>目前 Whatsapp 没有 URL Scheme for Call 功能。</p>

<p>但它确实有自定义 URL 方案来与特定联系人聊天。</p>

<p>您可以继续查看更多信息:<a href="https://www.whatsapp.com/faq/en/iphone/23559013" rel="noreferrer noopener nofollow">https://www.whatsapp.com/faq/en/iphone/23559013</a> .</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 iOS 上使用 Whatsapp url 方案调用,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/35987455/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/35987455/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 iOS 上使用 Whatsapp url 方案调用