我目前正在尝试使用Firebase动态链接(深层链接)。应用程序的核心应该在社交媒体上分享链接。
我已成功创建Short Link(200 OK),分享了G +和Facebook的链接。但是有一个问题
我在Android开发者网站上建议使用http方案:
<activity android:name=".LinkActivity">
<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="..."/>
</intent-filter>
</activity>
那我怎样才能在Facebook应用中正确使用Firebase动态链接?