Is it possible to publish post to user's wall with " - feeling excited, reading, watching", etc using facebook android SDK? I search in the documentations but didn't find any way to do that.
I am posting the status this way:
mFacebookCallback = new FacebookCallback<LoginResult>() {
@Override
public void onSuccess(LoginResult loginResult) {
Toast.makeText(mContext, "in LoginResult on success", Toast.LENGTH_LONG).show();
/* make the photo share call */
Bundle postParams = new Bundle();
postParams.putString("name", "test data");
new GraphRequest( AccessToken.getCurrentAccessToken(),
"/me/photos", //photos
postParams,
HttpMethod.POST,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
Toast.makeText(getApplicationContext(), "Successfully share post", Toast.LENGTH_SHORT).show();
}
}
).executeAsync();
}
};
Does anybody know of a way?