我的应用会生成按生日安排的朋友自定义列表视图。所以我使用了SELECT name, uid, pic_square, birthday_date FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) order by birthday_date
。
现在,当用户点击朋友(从列表视图)时,它将提示用户他/她是否要发布到该朋友墙。我知道如何用旧的方式做到这一点,但我因为How to send a post to Facebook friend's wall android SDK 3.0而感到困惑。
在那个问题中:
Facebook SDK for Android提供了一种让您发布的方法 从您的应用程序到用户时间轴的故事。你也可以用这个 代表您的用户发布状态更新的方法。此方法使用 Graph API,是使用Feed对话
的替代方法http://developers.facebook.com/docs/howtos/androidsdk/3.0/publish-to-feed/
也:
永远不要使用Graph-API在朋友的墙上张贴。因为它在2013年2月6日之后被禁用.FB建议您使用Feed对话框在朋友或自己的墙上发布。这是如何使用Feed对话框的链接:http://developers.facebook.com/docs/howtos/androidsdk/3.0/feed-dialog
我已经看过这两个链接,但两者都只显示了如何在自己的墙上发布。任何人都可以给我 一个很好的最新例子,或者至少,指出如何通过Facebook Android SDK 3.x使用FQL请求响应发布到您的朋友墙上的正确方向(截至当前版本为3.0.2b)?
答案 0 :(得分:3)
我找到了解决方案。您只需要添加“to”和“from”参数。以下是我的样本:
向一位朋友发帖:
private void publishFeedDialog(String friend_uid) {
Session session = Session.getActiveSession();
if (!hasPublishPermission()) {
// We don't have the permission to post yet.
session.requestNewPublishPermissions(new Session.NewPermissionsRequest(this, WRITE_PERMISSION));
}
if (user != null && friend_uid != null && hasPublishPermission()) {
final Activity activity = this;
Bundle params = new Bundle();
//This is what you need to post to a friend's wall
params.putString("from", "" + user.getId());
params.putString("to", friend_uid);
//up to this
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");
WebDialog feedDialog = (new WebDialog.FeedDialogBuilder(this, Session.getActiveSession(), 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();
}
}
向许多朋友发帖:
RequestsDialogBuilder而不是FeedDialogBuilder,因为第二个只允许参数“to”上有多个id,而第一个可以接收很多(虽然不确定限制,但我认为约为50)
信用:gian1200
答案 1 :(得分:0)
可能重复...我认为您应该检查提供的演示FB Facebook - Post to wall from Android application
<强>更新:强>
有这个。 http://developers.facebook.com/docs/howtos/androidsdk/3.0/publish-to-feed/
Facebook实际上建议使用Feed。看看