我想邀请 Facebook 用户。我使用了下面的代码,它适用于低于 android 6.0 版本。登录后它正在执行 facebook 登录它不显示朋友的列表。
这是我的代码
if (AppInviteDialog.canShow()) {
AppInviteContent content = new AppInviteContent.Builder()
.setApplinkUrl(appLinkUrl)
.setPreviewImageUrl("http://app.tweakvideos.com/image")
.build();
AppInviteDialog.show(this, content);
}
请帮我解决这个问题。