Android:如何自动在Facebook墙上发布更新?

时间:2011-01-16 12:34:59

标签: android facebook facebook-android-sdk

我希望我的Android应用程序在用户单击按钮时自动发布预设消息。预设消息将由用户设置,因此我猜这不违反Facebook政策。我该怎么做?

3 个答案:

答案 0 :(得分:1)

private static final String[] PERMISSIONS =
    new String[] {"publish_stream", "read_stream", "offline_access"};


Facebook authenticatedFacebook = new Facebook(APP_ID);


postButton.setOnClickListener(new OnClickListener() {
    public void onClick(View v) {
        authenticatedFacebook.authorize(Tests.this, PERMISSIONS,
            new TestPostListener());
    }
});


public class TestPostListener implements DialogListener {

    public void onComplete(Bundle values) {
        try {
            Log.d("Tests", "Testing request for 'me'");
            String response = authenticatedFacebook.request("me");
            JSONObject obj = Util.parseJson(response);

            Log.d("Tests", "Testing graph API wall post");
            Bundle parameters = new Bundle();
            parameters.putString("message", "Amit Siddhpura");
            parameters.putString("description", "Hi Mr. Amit Siddhpura");
            response = authenticatedFacebook.request("me/feed", parameters, 
                "POST");
            Log.d("Tests", "got response: " + response);
        } catch (Throwable e) {
            e.printStackTrace();
        }
    }

    public void onCancel() {
    }

    public void onError(DialogError e) {
        e.printStackTrace();
    }

    public void onFacebookError(FacebookError e) {
        e.printStackTrace();
    }
}

答案 1 :(得分:0)

你必须在Facebook上创建应用程序

从用户获取身份验证,然后您可以获取access_token通过Graph API发布一些消息

我认为您的应用程序必须请求扩展权限:publish_stream,offline_access

github上有Facebook-Android-SDK源代码,你可以参考一下。

http://developers.facebook.com/docs/guides/mobile

答案 2 :(得分:0)