Track Facebook post
Can is it possible to track users particular wall post and the no of like counts he get for that particular wall post?
开发者_运维百科I am developing the game where, user post the status from android applications and will be rewarded for no.of likes he get for that status.
Ok this is what you can do:
https://graph.facebook.com/[UID]/feed?access_token=[accessToken]
This will return a json response which you can parse and find the correct status and you can then count the likes of that status. It's probably not the best way to do it, but I hope it will push you in the right direction. http://developers.facebook.com/docs/reference/api/
精彩评论