0

我正在开发一个 android 应用程序,该应用程序需要在单击按钮时自动发布到用户的 facebook 墙上。分享按钮不需要任何用户交互,只需单击按钮,预定义的文本就会发布在墙上。

无论如何这可以做到吗?这种功能的任何链接?

注意:条件是设备中已经安装了 facebook 应用程序,并且用户必须登录 facebook 应用程序(以使事情更容易并避免身份验证程序)。

谢谢你。

4

1 回答 1

0

有一种简单的方法可以做到这一点:

private void publishStory(String title, String youneed2, String youneed3) {

    Session session = Session.getActiveSession();
    if (session != null){
        // Check for publish permissions    
        List<String> permissions = session.getPermissions();
        if (!isSubsetOf(PERMISSIONS, permissions)) {
            pendingPublishReauthorization = true;
            Session.NewPermissionsRequest newPermissionsRequest = new Session
                    .NewPermissionsRequest(getActivity(), PERMISSIONS);
            session.requestNewPublishPermissions(newPermissionsRequest);
            return;
        }
        Bundle postParams = new Bundle();
        postParams.putString("name", title);
        postParams.putString("caption", "bla bla");
        postParams.putString("description", "bla bla");
        postParams.putString("link", "http://www.yoursite.com");
        postParams.putString("picture", "http://linktoyourimage.com");

        Request.Callback callback= new Request.Callback() {
            public void onCompleted(Response response) {
                JSONObject graphResponse = response
                        .getGraphObject()
                        .getInnerJSONObject();
                String postId = null;
                try {
                    postId = graphResponse.getString("id");
                } catch (JSONException e) {
                    Log.i(TAG,
                            "JSON error "+ e.getMessage());
                }
                FacebookRequestError error = response.getError();
                if (error != null) {
                    debug.print("erreur");
                } 
            }
        };
        Request request = new Request(session, "me/feed", postParams, 
        HttpMethod.POST, callback);
        RequestAsyncTask task = new RequestAsyncTask(request);
        task.execute();
    }
}

不要忘记您需要一个有效的 Token,然后PublishStory()使用 Bundle 调用并构建您的帖子。

希望这有帮助

编辑

在您的 onCreate() 之前添加这些行

private static final List<String> PERMISSIONS = Arrays.asList("publish_actions");
private static final String PENDING_PUBLISH_KEY = "pendingPublishReauthorization";
private boolean pendingPublishReauthorization = false;
于 2013-11-08T15:53:22.463 回答