我使用下面显示的捆绑包在 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 帖子中设置图标并添加操作? 我试过了,解决方案帮不了我。