How to post message to facebook wall from android fb sdk [closed]
Hi everyone I found this is working.
Bundle parameters = new Bundle();
parameters.putString("message", "This is a test message.");
mFacebook.request("me/feed", parameters, "POST");
This is full code.
Facebook mFacebook = new Facebook(FACEBOOK_APP_ID);
SessionStore.restore(mFacebook, mContext);
try {
TextView post_edit = (TextView)findViewById(R.id.post_edit);
String message = String.valueOf(post_edit.getText());
Bundle parameters = new Bundle();
parameters.putString("message", message);
mFacebook.request("me/feed", parameters, "POST");
} catch (Exception e) {
}
精彩评论