0

facebook api を介して自分の壁に投稿しますが、うまく機能しますが、投稿の下部にコメント、共有などのアクションはありません。どうすれば有効にできますか?

http://graph.facebook.com/me/feed という URL に投稿し ます。access_token=xxx&message=xxx&link=xxx&picture=xxx&name=xxx&caption=xxx&description=xxx

4

1 に答える 1

0

クライアント アプリでフィード ダイアログを使用する。 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);
于 2012-05-18T09:37:14.753 に答える