我正在尝试升级到Facebook SDK 3.0并最终使用Request.newStatusUpdateRequest()完成所有工作。但是,我的应用程序共享/发布文本以及链接。我试过/研究过以下内容:
Request.newStatusUpdateRequest()
这似乎没有任何Bundle选项或任何其他方式来包含链接和图标。
Request.newRestRequest()
跳过这个因为我看到REST被折旧了。
new WebDialog.FeedDialogBuilder(_activity, session, params).build().show();
这实际上运作得很好,但结果的帖子似乎与我的Facebook应用程序没有关联,我不确定这将如何影响我的Facebook见解。
Request.newPostRequest()
从我所读到的,这种方法似乎是正确的方法。但是,我无法弄清楚将GraphObject作为参数之一传入的位置。
将文本,链接和图像发布/共享到用户墙上的PROPPER方式是什么?它似乎是Request.newPostRequest()所以我将包含我的代码。
Request request = Request.newPostRequest(session, "me/feed", ??graph_object??, new Request.Callback() {
@Override
public void onCompleted(Response response) {
showPublishResult("message", response.getGraphObject(), response.getError());
}
});
request.setParameters(params);
Request.executeBatchAsync(request);
但是什么是GraphObject?我在哪里获得graph_object?我在GraphObject / OpenGraph / Graph API上从FB读取的越多,我就越感到困惑。
如果我完全朝着错误的方向前进,请告诉我。如果Request.newPostRequest是执行此操作的方式,请提供有关GraphObject参数的更多信息。
答案 0 :(得分:15)
最后使用以下方法设法通过Facebook SDK 3.0获得我需要的一切:
Bundle params = new Bundle();
params.putString("caption", "caption");
params.putString("message", "message");
params.putString("link", "link_url");
params.putString("picture", "picture_url");
Request request = new Request(Session.getActiveSession(), "me/feed", params, HttpMethod.POST);
request.setCallback(new Request.Callback() {
@Override
public void onCompleted(Response response) {
if (response.getError() == null) {
// Tell the user success!
}
}
});
request.executeAsync();
答案 1 :(得分:4)
我使用这种方法。 看看这是否有帮助。
public static void publishFeedDialog(final Activity current, final String title,
final String caption, final String description, final String link,
final String pictureUrl) {
// start Facebook Login
Session.openActiveSession(current, true, new Session.StatusCallback() {
// callback when session changes state
@Override
public void call(Session session, SessionState state,
Exception exception) {
if (session.isOpened()) {
Bundle params = new Bundle();
params.putString("name", title);
params.putString("caption", caption);
params.putString("description", description);
params.putString("link", link);
params.putString("picture", pictureUrl);
WebDialog feedDialog = (new WebDialog.FeedDialogBuilder(
current, 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) {
ToastHelper.MakeShortText("Posted");
} else {
// User clicked the Cancel button
ToastHelper
.MakeShortText("Publish cancelled");
}
} else if (error instanceof FacebookOperationCanceledException) {
// User clicked the "x" button
ToastHelper
.MakeShortText("Publish cancelled");
} else {
// Generic, ex: network error
ToastHelper
.MakeShortText("Error posting story");
}
}
}).build();
feedDialog.show();
}
}
});
答案 2 :(得分:1)
分享页面或链接
Bundle params = new Bundle();
params.putString("link", "link_url");
Request request = new Request(Session.getActiveSession(), "me/feed", params, HttpMethod.POST);
request.setCallback(new Request.Callback() {
@Override
public void onCompleted(Response response) {
if (response.getError() == null) {
// Tell the user success!
}
}
});
request.executeAsync();
有关更多帖子参数,请参阅me/feed on developer.facebook.com