8

我正在尝试升级到 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 作为参数之一传入。

在用户的墙上发布/共享文本、链接和图像的正确方法是什么?它似乎是 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?我从 FB 关于 GraphObject/OpenGraph/Graph API 阅读的越多,我就越感到困惑。

如果我完全走错了方向,请告诉我。如果 Request.newPostRequest 是这样做的正确方式,请给我有关 GraphObject 参数的更多信息。

4

3 回答 3

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();
于 2013-06-11T01:24:13.740 回答
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();
            }
        }
    });
于 2013-08-21T01:33:12.957 回答
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();

有关更多帖子参数,请参阅developer.facebook.com 上的我/提要

于 2013-12-05T13:33:34.800 回答