从Facebook应用程序Android开放自定义URL方案

时间:2013-01-02 12:58:06

标签: android google-chrome facebook-android-sdk custom-url

我使用intent-filter使用我的应用打开自定义网址,并且工作正常..

当我尝试从谷歌浏览器浏览器或Facebook本机应用帖子打开我的自定义网址时(在私信中,它的效果很好),它不起作用并将其作为网站打开。

我的代码:

<intent-filter>
  <category android:name="android.intent.category.DEFAULT" />
  <category android:name="android.intent.category.BROWSABLE" />
  <action android:name="android.intent.action.VIEW" />
  <action android:name="android.intent.action.SEND" />
  <data
    android:host="mydomain.co.il"
    android:scheme="http" />
  <data
    android:host="www.mydomain.co.il"
    android:scheme="http" />
  <data
    android:host="www.mydomain.co.il"
    android:scheme="myscheme" />
</intent-filter>

1 个答案:

答案 0 :(得分:0)

可能是与以下参考文章中提到的相同的错误,它声明了Chromium bug,您可以看到针对此问题的解决方法。

OAuth and custom scheme result in a "ERR_UNKNOWN_URL_SCHEME" in Chrome