我正在使用Android上的最新Facebook SDK向我的应用发送邀请但是当朋友收到邀请并点击它时,他们被定向到Facebook应用程序已破坏页面(找不到页面)而不是google play for下载。谁知道为什么?
这是我的代码:
Bundle bundle = new Bundle();
bundle.putString("message", message);
bundle.putString("app_id", applicationId);
if (friendId != null) {
bundle.putString("to", friendId);
}
bundle.putString("title", title);
WebDialog applicationInvitationDialog = new WebDialog.RequestsDialogBuilder(
activity,
ParseFacebookUtils.getSession(),
bundle
)
.setOnCompleteListener(
new WebDialog.OnCompleteListener() {
/**
*
* @param bundle
* @param facebookException
*/
@Override
public void onComplete(Bundle bundle, FacebookException facebookException) {
boolean wasSent = false;
if (facebookException != null) {
Configuration.singleton().getCrashReportHandler().logException(
facebookException
);
} else {
wasSent = true;
}
callback.callback(
wasSent, getInvitees(bundle)
);
}
}
).build();
applicationInvitationDialog.show();
答案 0 :(得分:0)
发现问题。我根本不需要发送app_id。 希望它对某人有所帮助。