I am trying to send app invites through the Facebook SDK v4.0 on Android. I am unable to figure out once I send the invite through my app, no notification is generated on the user's profile nor can the user see any invite of the sort.
I send the invite through:
if (AppInviteDialog.canShow()) {
AppInviteContent content = new AppInviteContent.Builder()
.setApplinkUrl(appLinkUrl)
//.setPreviewImageUrl(previewImageUrl)
.build();
AppInviteDialog.show(this, content);
}