我正在尝试通过Android上的Facebook SDK v4.0发送应用邀请。一旦我通过我的应用程序发送邀请,我就无法理解,用户的个人资料不会生成任何通知,用户也无法看到任何此类邀请。
我通过以下方式发送邀请:
if (AppInviteDialog.canShow()) {
AppInviteContent content = new AppInviteContent.Builder()
.setApplinkUrl(appLinkUrl)
//.setPreviewImageUrl(previewImageUrl)
.build();
AppInviteDialog.show(this, content);
}