0

我试图允许用户在我的 Android 应用程序中将状态发布到他们的 FB 墙上。我对帖子的隐私/观众有问题,总是设置为“只有我”我想将其设置为“朋友”,但我找不到这样做的方法。以下是我如何完成此操作的代码片段:

    Bundle params = new Bundle();
    params.putString("description", " ");
    params.putString("name", "testtest app");
    params.putString("link", "http://www.testtestapp.com/");

    WebDialog feedDialog = (new WebDialog.FeedDialogBuilder(QuickCalc.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) {
                    } else {
                        // User clicked the Cancel button
                    }
                } else {
                    // Generic, ex: network error
                }
            }

        })
        .build();
    feedDialog.show();
4

1 回答 1

1

受众级别是在用户首次授权您的应用程序具有写入权限时设置的,并且不能由应用程序更改(出于非常明显的原因)。

当您请求写入权限时,您可以通过调用setDefaultAudience方法请求某个默认受众级别,但用户可以从 Facebook 网站编辑应用程序设置,并随时更改受众设置。

于 2013-06-11T18:37:55.483 回答