我正在开发一个 Android 应用程序。我正在努力将“邀请朋友”功能添加到我的应用程序中。它AppLinkUrl
成功了,但显示错误。
我的清单代码如下 -
<!--Abhishek Tandon FB invitation Code-->
<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="com.tandon.mynewsapp//https://my_fb_url_here" />
</intent-filter>
下面是我的 InviteFriend 活动代码-
//Abhishek Tanodn FB code for InviteFriend Activity
FacebookSdk.sdkInitialize(getApplicationContext());
Uri targetUrl = AppLinks.getTargetUrlFromInboundIntent(this, getIntent());
if (targetUrl != null) {
Log.i("Activity", "App Link Target URL: " + targetUrl.toString());
当我运行这个应用程序时,我被重定向到 Facebook 页面,但我看不到任何与我的应用程序相关的内容。
请让我知道我在哪里做错了。
或者请告诉我从 Facebook 邀请朋友到我现有的 Android 应用程序的正确方法。
谢谢 !