以下に示すバンドルを使用して、Facebook にメッセージを投稿します。
Bundle postParams = new Bundle();
postParams.putString("name", "Facebook SDK for Android");
postParams.putString("caption", "Build great social apps and get more installs.");
postParams.putString("description", "The Facebook SDK for Android makes it easier and faster to develop Facebook integrated Android apps.");
postParams.putString("link", "https://developers.facebook.com/android");
postParams.putString("picture", "https://raw.github.com/fbsamples/ios-3.x-howtos/master/Images/iossdk_logo.png");
Request request = new Request(Session.getActiveSession(), "me/feed", postParams,
HttpMethod.POST, null);
RequestAsyncTask task = new RequestAsyncTask(request);
task.execute();
Facebook APIを使用してアイコンを設定し、Facebookの投稿にアクションを追加する方法は? 私はそれを試しましたが、解決策は私を助けません。