如何邀请朋友从Facebook到Android应用程序? - 给出错误

时间:2016-07-30 18:11:54

标签: android facebook-graph-api android-studio facebook-invite-friends

我正在使用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页面,但我看不到任何与我的应用程序相关的内容。

I got error that page is not available

请告诉我我在哪里做错了。

或者请告诉我邀请朋友从Facebook到我现有的Android应用程序的正确方法。

提前谢谢你!

0 个答案:

没有答案