我通过 facebook api 在我的墙上发了一个帖子,它运行良好,但是没有像帖子底部这样的操作,评论,分享我该如何启用它?
我在 url 上发了一个 http 帖子: https://graph.facebook.com/me/feed?access_token=xxx&message=xxx&link=xxx&picture=xxx&name=xxx&caption=xxx&description=xxx
我通过 facebook api 在我的墙上发了一个帖子,它运行良好,但是没有像帖子底部这样的操作,评论,分享我该如何启用它?
我在 url 上发了一个 http 帖子: https://graph.facebook.com/me/feed?access_token=xxx&message=xxx&link=xxx&picture=xxx&name=xxx&caption=xxx&description=xxx
在客户端应用程序上使用提要对话框; https://developers.facebook.com/docs/reference/dialogs/feed/
在那个链接上,也有通过 Graph API 调用的示例
让我尝试添加进行 HTTP POST 调用时所需的示例参数;
Map<String, String> fbParams = new HashMap<String, String>();
String actions="{\"name\": \""+ "name of your app" +"\""+
", \"link\": \""+ "link to your app, webpage etc" +"\"}";
fbParams.put("message",message);// NOTE: leave empty, let user enter this via dialog
fbParams.put("picture",picture_static);
//fbParams.putString("source", picture_static);// only 'picture' param is enough
fbParams.put("link",link);
fbParams.put("name",name);
fbParams.put("description",description);
fbParams.put("caption","using BlablaApp");
fbParams.put("actions",actions);