2012-02-22 64 views
0

我能夠發佈到用戶飼料使用URL從我的應用程序,例如:如何在通過網址發佈到Feed時添加「操作」?

https://graph.facebook.com/USER_ID/feed? 
link=https://developers.facebook.com/docs/reference/dialogs/& 
picture=http://fbrell.com/f8.jpg& 
name=Facebook%20Dialogs& 
caption=Reference%20Documentation& 
description=Using%20Dialogs%20to%20interact%20with%20users.& 
message=Facebook%20Dialogs%20are%20so%20easy! 

據這裏的文檔:https://developers.facebook.com/docs/reference/dialogs/feed/有可能增加其旁邊出現像「行動」評論每個帖子下的按鈕。該文檔聲明操作必須採用JSON格式,對象的密鑰爲,名稱爲鏈接。我如何將這個添加到上面的URL?

回答

0

那麼,你可以添加動作參數。如果在PHP,那麼你可以這樣做:

 

'actions' => json_encode(array(
     'name' => 'Some sample link example', 
     'link' => 'http://something.com/test/' 
)), 
 

你是不是故意這樣。

希望它可以幫助

相關問題