facebook android SDKを使って「~ワクワク、読んで、見て」などの投稿をユーザーのウォールに公開することはできますか?ドキュメントを検索しましたが、それを行う方法が見つかりませんでした。
私はこのようにステータスを投稿しています:
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();
}
};
誰か方法を知っていますか?