我正在使用Facebook Android sdk使用WebDialog.FeedDialogBuilder发布到我的好友墙。
这是我的代码:
Bundle params = new Bundle();
params.putString("name", "Facebook SDK for Android");
params.putString("caption", "Build great social apps and get more installs.");
params.putString("description", "The Facebook SDK for Android makes it easier and faster to develop Facebook integrated Android apps.");
params.putString("link", "https://developers.facebook.com/android");
params.putString("picture", "https://raw.github.com/fbsamples/ios-3.x-howtos/master/Images/iossdk_logo.png");
params.putString("to", friend_uid);
WebDialog feedDialog = (new WebDialog.FeedDialogBuilder(this, mCurrentSession, params))
.setOnCompleteListener(new OnCompleteListener() {
@Override
public void onComplete(Bundle values, FacebookException error) {
if (error == null) {
// When the story is posted, echo the success
// and the post Id.
final String postId = values.getString("post_id");
if (postId != null) {
Toast.makeText(activity,
"Posted story, id: "+postId,
Toast.LENGTH_SHORT).show();
} else {
// User clicked the Cancel button
Toast.makeText(activity,
"Publish cancelled",
Toast.LENGTH_SHORT).show();
}
} else if (error instanceof FacebookOperationCanceledException) {
// User clicked the "x" button
Toast.makeText(activity,
"Publish cancelled",
Toast.LENGTH_SHORT).show();
} else {
// Generic, ex: network error
Toast.makeText(activity,
"Error posting story",
Toast.LENGTH_SHORT).show();
}
}
}).build();
feedDialog.show();
当我从上面的代码中删除下面一行时,我可以成功发布时间线。
params.putString("to", friend_uid);
但是当我保持这一行发布给我的朋友时间线时,我会收到带有消息
的对话框 "Cannot Post to User's Wall Error" with Ok Button
我确信我已获得所需的权限。我也在我的日志中打印
我对会话的权限低于
{Session state:OPENED, token:{AccessToken token:ACCESS_TOKEN_REMOVED permissions:[photo_upload, publish_stream, video_upload, installed, publish_checkins, publish_actions, share_item, user_friends, email, user_photos, public_profile, status_update, create_note, basic_info]}, appId:xxxxx402xxxx}
我在SO和谷歌搜索了很多,但没有找到任何解决方案。 我是否需要为我的应用程序提供任何其他设置? 请建议我解决这个问题。
由于
答案 0 :(得分:0)
要在您的朋友时间轴中发布,您应该在“to”参数之前将此代码添加到您的Bundle中:params.putString("from",fbid_sender);//where fbid_sender is the facebook id of the user is making the post
答案 1 :(得分:0)
首先来自docs
到 - >此故事将发布到的配置文件的ID。如果这 未指定,默认为from的值。 ID必须是a 也使用您的应用的朋友
其次,来自docs
请注意
如果某人有“谁可以在您的时间轴上发帖?” 设置为 “只有我”和另一个人试图使用Feed发布帖子 对话框,它将显示“无法发布”错误。
最后,来自upgrade文档
Feed对话框 - 而不是直接使用Feed对话框(通过 你可以在v3.x中使用WebDialog.FeedDialogBuilder,使用ShareDialog, 这将使用Facebook应用程序中的本机共享对话框 安装,然后回到webview。如果你明确想要展示 只有Feed对话框,你可以使用ShareDialog.show(内容, ShareDialog.Mode.FEED);