菜鸟教程小白 发表于 2022-12-13 13:41:26

android - 打开 iOS、Android 和 BlackBerry 应用程序的通用链接


                                            <p><p>每个平台都有自己的方式通过 URL 打开已安装的应用程序。</p>

<p>Android有可以注册的URL pattern,iOS可以设置URL scheme。</p>

<p>如何通过邮件发送单个 URL,并根据点击 URL 的平台使该链接在 iOS 和 Android 上打开我的应用程序?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以编写一个简单的网页来检测请求来自哪个浏览器,然后重定向到适当的链接。例如,<a href="http://php.about.com/od/learnphp/ht/phpredirection.htm" rel="noreferrer noopener nofollow">here is an explanation of redirecting in PHP</a> .</p>

<p><strong>编辑:</strong></p>

<p>下面是一个代码示例。在 Android 上,它确实会弹出一个弹出窗口并要求用户输入,因为您的 Android 知道它可以打开 Google Play 网页或 Google Play 应用程序。这是 Android 上的预期行为。我没有在 iPhone 上尝试过,但它应该不会在台式计算机上导致弹出窗口。</p>

<pre><code>&lt;?php

    if(preg_match ( &#34;/.*Android.*/&#34; , $_SERVER[&#39;HTTP_USER_AGENT&#39;])){
      header( &#39;Location: https://play.google.com/store&#39; ) ;
    } else if (preg_match ( &#34;/.*iPhone.*/&#34; , $_SERVER[&#39;HTTP_USER_AGENT&#39;])){
      header( &#39;location: http://www.apple.com/itunes/whats-on/&#39;);
    }

?&gt;
&lt;html&gt;

&lt;body&gt;
Show for web page for desktop
&lt;/body&gt;
&lt;/html&gt;
</code></pre>

<p>这里是 <a href="https://stackoverflow.com/questions/1005153/auto-detect-mobile-browser-via-user-agent" rel="noreferrer noopener nofollow">related question with some other solutions</a> </p>

<p><strong>编辑:</strong></p>

<p>我刚刚注意到,您想打开应用程序本身而不是应用程序的下载页面。上面的代码仍然可以工作。您只需要修复网址。这两个问题都适用</p>

<ul>
<li> <a href="https://stackoverflow.com/questions/5065982/android-custom-url-to-open-app-like-in-ios" rel="noreferrer noopener nofollow">Android Custom URL to open App like in iOS</a> </li>
<li> <a href="https://stackoverflow.com/questions/2958701/launch-custom-android-application-from-android-browser" rel="noreferrer noopener nofollow">Launch custom android application from android browser</a> </li>
</ul></p>
                                   
                                                <p style="font-size: 20px;">关于android - 打开 iOS、Android 和 BlackBerry 应用程序的通用链接,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10520655/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10520655/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: android - 打开 iOS、Android 和 BlackBerry 应用程序的通用链接