我使用以下代码进行应用邀请。
if (AppInviteDialog.canShow()) {
AppInviteContent content = new AppInviteContent.Builder()
.setApplinkUrl(appLinkUrl)
.setPreviewImageUrl(previewImageUrl)
.build();
AppInviteDialog.show(this, content);
}
每次我运行代码我都什么都没有。 没有错误或没有任何警告
我关注App invite链接,但在Facebook登录屏幕后没有结果。 知道这有什么不对吗?