发布到特定朋友的Facebook墙

时间:2011-06-25 18:34:50

标签: android facebook-graph-api

我必须在特定朋友的墙上发布消息。我尝试过“me / feed”,但它会显示给所有朋友,但我需要为特定朋友发布消息。

1 个答案:

答案 0 :(得分:7)

您需要知道朋友ID,您可以在下面看到我的方法:

public void postOnFriendsWall(String msg, String toID, String description) {
    try {
        if (isSession()) {
            String response = mFacebook.request(toID);
            Bundle parameters = new Bundle();
            parameters.putString("message", msg);
            parameters.putString("description", description);
            response = mFacebook.request(toID+"/feed", parameters, "POST");
            Log.d("FACEBOOK RESPONSE",response);
            if (response == null || response.equals("") || 
                    response.equals("false")) {
                Log.v("Error", "Blank response");
            }

        } else {
            // no logged in, so relogin
            Log.d(TAG, "sessionNOTValid, relogin");
            mFacebook.authorize(this, PERMS, new LoginDialogListener());
        }
    } catch(Exception e) {
        e.printStackTrace();
    }
}