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.

For example:

  • I have a FaceBook Page about my website.

  • On my website, I display my 3 most recent FaceBook page messages (graph.facebook.com/[pageId]/[more parameters])

  • Next to each FaceBook Page message (as they appear on my website) I would like to add a FaceBook Like button. When the like button is clicked, a "Like" should be given to the FaceBook Page Message. How can this be done?
share|improve this question
Are you against using an fb:like-box‌​? It might be the best option here. – Jimmy Sawczuk May 23 '11 at 21:16

2 Answers

up vote 2 down vote accepted

Simply use the permalink of the post as your url in an fb:like button. The tricky part will be figuring out what the permalink is, since it takes different forms if it's a link, status, or video. For a link or status update, it's this format:

http://www.facebook.com/<PAGE_USERNAME>/posts/<POST_ID> 

Or, if you don't have a username:

http://www.facebook.com/permalink.php?story_fbid=<POST_ID>&id=<PAGE_ID>

You can determine the post ID and page ID by accessing http://graph.facebook.com/<PAGE_ID>/posts and splitting the id string on the _.

share|improve this answer

You should be able to POST to the /likes URL of any object that supports likes. No arguments should be specified. You can remove a like by executing a DELETE request to the same URL.

/OBJECT_ID/likes
Like the given object (if it has a /likes connection)

So the URL you should POST to, is https://graph.facebook.com/[pageId]/likes

Read more under Publishing on this page: http://developers.facebook.com/docs/reference/api/

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.