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 have a table with Facebook Post id. using this post id I want to retrieve post's comments count and likes count.

Any hint is very much appreciated.

Thanks

share|improve this question
what have you tried? Have you used the FB API? – mlishn Aug 6 '12 at 14:44
I don't have much idea about FB API method. Which method will result this two counts? – Ajay Gupta Aug 7 '12 at 6:11

2 Answers

You need to look into the Facebook API and atleast do some research before posting here.

This should give you some insight : http://developers.facebook.com/docs/reference/api/post/

Use the API to get the array response from Facebook based on the post. Then look through it to find the counts you desire.

You will need to obtain an access_token from Facebook in order to make an requests against the Facebook Graph. There are also plenty of tutorials and snippits out there when researched.

Good luck

share|improve this answer

USE FQL

select likes.count, comments.count FROM stream WHERE post_id =POST_ID

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.