在android中打开与facebook app的链接

时间:2016-02-13 07:17:56

标签: android facebook

请参阅下面的两个链接。当粘贴在Whatsapp中时,第一个用Facebook应用程序打开,但第二个用浏览器打开。

在Facebook应用程序中打开:

https://m.facebook.com/SriSwamiji/posts/1099353043449548:0

在浏览器中打开:

https://www.facebook.com/SriSwamiji/photos/a.186720728046122.67368.108460819205447/1099353043449548/?type=3

是什么让第二个链接在浏览器中打开? 我想通过Facebook应用程序打开它。

1 个答案:

答案 0 :(得分:3)

我想说的是deep linking。在任何应用中,只要Android系统尝试解析网址,您就可以添加触发应用的过滤器。

Facebook应用可能已经配置了http://m.*网址

的深层链接

编辑:我已经通过adb对其进行了测试,这是由于深层链接造成的。您可以使用

进行测试
adb shell am start -W -a android.intent.action.VIEW -d <URL>

,如the deep link documentation

中所述

这是输出:

$ adb shell am start -W -a android.intent.action.VIEW -d "https://m.facebook.com/SriSwamiji/posts/1099353043449548:0"
Starting: Intent { act=android.intent.action.VIEW dat=https://m.facebook.com/... }
Status: ok
Activity: com.facebook.katana/com.facebook.deeplinking.activity.StoryDeepLinkLoadingActivity
ThisTime: 127
TotalTime: 208
WaitTime: 253
Complete

正如您所看到的,Activity已启动com.facebook.katana(Facebook应用)。

$ adb shell am start -W -a android.intent.action.VIEW -d "https://www.facebook.com/SriSwamiji/photos/a.186720728046122.67368.108460819205447/1099353043449548/?type=3"
Starting: Intent { act=android.intent.action.VIEW dat=https://www.facebook.com/... }
Status: ok
Activity: com.android.chrome/org.chromium.chrome.browser.document.DocumentActivity
ThisTime: 121
TotalTime: 179
WaitTime: 223
Complete

在这种情况下com.android.chrome已启动

此外,如果您查看Facebook应用清单(使用某些应用程序,例如ManifestViewer,您可以看到它有一些intent-filter来处理它:

        <intent-filter>
            <action
                android:name="android.intent.action.VIEW"/>
            <category
                android:name="android.intent.category.DEFAULT"/>
            <category
                android:name="android.intent.category.BROWSABLE"/>
            <data
                android:scheme="http"
                android:host="m.facebook.com"
                android:pathPrefix="/events"/>
            <data
                android:scheme="https"
                android:host="m.facebook.com"
                android:pathPrefix="/events"/>
            <data
                android:scheme="http"
                android:host="m.facebook.com"
                android:pathPrefix="/groups"/>
            <data
                android:scheme="https"
                android:host="m.facebook.com"
                android:pathPrefix="/groups"/>
            <data
                android:scheme="http"
                android:host="www.facebook.com"
                android:pathPrefix="/groups"/>
            <data
                android:scheme="https"
                android:host="www.facebook.com"
                android:pathPrefix="/groups"/>
            <data
                android:scheme="http"
                android:host="www.facebook.com"
                android:pathPrefix="/events"/>
            <data
                android:scheme="https"
                android:host="www.facebook.com"
                android:pathPrefix="/events"/>
        </intent-filter>

在具体案例中,我会说该链接在

中处理
    <activity
        android:theme="@2131625627"
        android:name="com.facebook.katana.ContactUriHandler"
        android:taskAffinity="com.facebook.task.ContactUriHandler"
        android:excludeFromRecents="true"
        android:launchMode="singleInstance">
        <intent-filter>
            <action
                android:name="android.intent.action.VIEW"/>
            <category
                android:name="android.intent.category.DEFAULT"/>
            <data
                android:mimeType="vnd.android.cursor.item/vnd.facebook.profile"
                android:host="com.android.contacts"/>
            <data
                android:mimeType="vnd.android.cursor.item/vnd.facebook.presence"
                android:host="com.android.contacts"/>
        </intent-filter>
    </activity>

内部支持帖子但不支持照片