将图片上传到朋友墙的过程, frist将图像上传到用户墙,并在响应中获取图像ID和链接,
无法在朋友墙上发布图片,如果需要任何fb配置和fb权限,请建议我吗?
if (hasPublishPermission()) {
RequestBatch requestBatch = new RequestBatch();
for (GraphUser friend : selectedFriends) {
Bundle parameters = new Bundle();
Constants.showLog(TAG, String.valueOf(friend.getFirstName()));
parameters.putString("message", "Greetings!!");
parameters.putString("link", imagelink);
parameters.putString("picture", imagelink);
parameters.putString("target_id", friend.getId());
requestBatch.add(new Request(Session.getActiveSession(), friend.getId() + "/feed", parameters,
HttpMethod.POST));
Constants.showToast(this, "Posted picture on your friends wall");
}
requestBatch.addCallback(new Callback() {
@Override
public void onBatchCompleted(RequestBatch batch) {
Constants.showLog(TAG, "Posted to :" + batch.size());
}
});
Request.executeBatchAsync(requestBatch);
}
答案 0 :(得分:0)
请参见2月6日的重大更改https://developers.facebook.com/roadmap/completed-changes/
即:“删除通过Graph API发布到朋友墙的功能”。
您无法再通过图表请求直接发布到朋友的墙上。您需要使用提要对话框。