Reputation: 1849
I am trying to Invite my Facebook friends with the app playstore URL to install. I am using following code for Facebook Invite.
AppInviteContent content = new AppInviteContent.Builder()
.setApplinkUrl(appLinkUrl)
.setPreviewImageUrl(previewImageUrl)
.build();
AppInviteDialog.show(this, content);
Now, my problem is, My friend is getting notification only when he has facebook app but not in browser. Please help me what should I use to get notification in both app and browser. Is it possible to post it as a message?
Upvotes: 1
Views: 108
Reputation: 10330
I haven't tried it but I believe you can send as message using .setDestination(AppInviteContent.Builder.Destination.MESSENGER)
Upvotes: 0