0
我發貼到我的牆上throgh facebook api 它運行良好,但沒有任何操作,如帖子底部的評論和分享 如何啓用它?如何在我發佈的帖子上啓用操作
我做了一個http發佈到thie url: https://graph.facebook.com/me/feed?的access_token = XXX &消息= XXX &鏈路= XXX &圖象= XXX &名= XXX &字幕= XXX &描述= XXX
我發貼到我的牆上throgh facebook api 它運行良好,但沒有任何操作,如帖子底部的評論和分享 如何啓用它?如何在我發佈的帖子上啓用操作
我做了一個http發佈到thie url: https://graph.facebook.com/me/feed?的access_token = XXX &消息= XXX &鏈路= XXX &圖象= XXX &名= XXX &字幕= XXX &描述= XXX
使用客戶端應用程序飼料對話框; https://developers.facebook.com/docs/reference/dialogs/feed/
該鏈接,有例子還呼籲直通圖形API
讓我嘗試添加例如PARAMS當你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);
感謝WareNinja is'nt there an option to make it without dialog? 如果你會在這裏(在崗位): http://developers.facebook.com/docs/reference/api/page/ 有一個名爲行動 的參數,但我不知道 –
的正確值但是,如何在帖子底部添加評論,分享和喜歡的鏈接? –
like,comment是標準的,任何額外的動作應該是'actions'屬性的一部分。看facebook doc「操作一個JSON數組包含一個描述動作鏈接的單個對象,它將出現在帖子下面的」Comment「和」Like「鏈接旁邊,包含的對象必須有鍵名和鏈接。 – guleryuz