Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am able to post to a users feed using a URL from my app, for example:

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!

According to the documentation here: https://developers.facebook.com/docs/reference/dialogs/feed/ it is possible to add "actions" which appear next to the Like and Comment buttons under each post. The documentation states the actions must be in a JSON format with object with keys name and link

share|improve this question

1 Answer

up vote 2 down vote accepted

Well, you could add actions parameter. If in PHP then you could do like:

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

Did you mean something like that.

Hope it helps

share|improve this answer
1  
yes it helped thnx.......... – user1216070 Feb 22 '12 at 7:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.