我想邀请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);
}
请帮我解决此问题。