AppInviteDialog not working in Android Facebook SD

2019-03-30 05:00发布

After long research and trying to fix this on my own, I haven't found any acceptable working result.

Following this documentation I'm trying to invite friends to my app. All elements, such as share buttons are working properly.

The only problem are with "Invite to app" dialog. After selecting a friend, the dialog are showing red alert icon and "send" button is turns into "retry" button.

I have tried fix this in many ways - configure my app in FB dev page (like changing app category: game, travel .etc), adding new permission for sharing (but I haven't found, that inviting is required it), using GamesRequests (but my app isn't a game, it's android + canvas app). So I have returned again to AppInviteDialog.

Also, I have trying to use own instance of it, with listeners, instead of static class.

inviteDialog = new AppInviteDialog(this);
inviteDialog.registerCallback(callbackManager, new FacebookCallback<Result>() {
    @Override
    public void onSuccess(Result result) {
        Log.i(TAG, "MainACtivity, InviteCallback - SUCCESS!");
    }

    @Override
    public void onCancel() {
        Log.i(TAG, "MainACtivity, InviteCallback - CANCEL!");
    }

    @Override
    public void onError(FacebookException error) {
        Log.e(TAG, "MainACtivity, InviteCallback - ERROR! " + error.getMessage());
    }
});

And calling it, like in tutorial:

 if(AppInviteDialog.canShow()) {
        AppInviteContent content = new AppInviteContent.Builder()
            .setApplinkUrl(appUrl)
            .setPreviewImageUrl(imagePreviewUrl)
            .build();
            //AppInviteDialog.show(this, content); //static
        inviteDialog.show(content); //my instance
  }

But all what i get is:

enter image description here

Edit:

After creating link to my app using AppLinks, and using it in the AppInviteDialog, now all works fine. It's a bit confusing, that in documentation not clearly described, what kind of link need to use: "AppLinks link" or just "app link (link to your fb app)".

3条回答
劳资没心,怎么记你
2楼-- · 2019-03-30 05:38

I was having the same issue and my cause was not calling onActivityResult on the facebook CallbackManager. This is how I fixed it:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    facebookCallbackManager = CallbackManager.Factory.create();
    // ...
}

Then here is where I was having the error:

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);

    // This is the line I was lacking
    facebookCallbackManager.onActivityResult(requestCode, resultCode, data);
}

After onActivityResult was added, I am getting my callbacks fired:

AppInviteDialog appInviteDialog = new AppInviteDialog(activity);
FacebookCallback callback =  new FacebookCallback<AppInviteDialog.Result>() {
        @Override
        public void onSuccess(AppInviteDialog.Result result) {
        }

        @Override
        public void onCancel() {
        }

        @Override
        public void onError(FacebookException error) {
        }
    };
appInviteDialog.registerCallback(facebookCallbackManager, callback);
appInviteDialog.show(content);
查看更多
我欲成王,谁敢阻挡
3楼-- · 2019-03-30 05:41

I got another question related to this.

If I am not using applink hosting, but presenting applink on my site. It will failed to invite and show the same failing message.

Here is my link:

http://cn.cmcm.com/activity/2015/phonescanning/en.html

More interesting, this invite will success accidentally.

Anyone has the same situations?

查看更多
放荡不羁爱自由
4楼-- · 2019-03-30 05:44

Is there an error message?

I get this if I don't use an AppLink.

https://developers.facebook.com/quickstarts/1374389166202673/?platform=app-links-host

查看更多
登录 后发表回答