我可以使用我的应用中的网址发布到用户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/可以在每个帖子下添加 Like 和 Comment 按钮旁边的“操作”。文档说明操作必须采用JSON格式,其对象包含 name 和 link 。我如何将其添加到上面的URL?
答案 0 :(得分:0)
好吧,你可以添加动作参数。如果在PHP中你可以这样做:
'actions' => json_encode( array(
'name' => 'Some sample link example',
'link' => 'http://something.com/test/'
)),
你的意思是什么。
希望有所帮助