2012-05-18 55 views

回答

0

使用客戶端應用程序飼料對話框; 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); 
+0

感謝WareNinja is'nt there an option to make it without dialog? 如果你會在這裏(在崗位): http://developers.facebook.com/docs/reference/api/page/ 有一個名爲行動 的參數,但我不知道 –

+0

的正確值但是,如何在帖子底部添加評論,分享和喜歡的鏈接? –

+0

like,comment是標準的,任何額外的動作應該是'actions'屬性的一部分。看facebook doc「操作一個JSON數組包含一個描述動作鏈接的單個對象,它將出現在帖子下面的」Comment「和」Like「鏈接旁邊,包含的對象必須有鍵名和鏈接。 – guleryuz

相關問題