get facebook likes count in iphone-sdk

前端 未结 2 1003

I don\'t want to show Like button... I just want to get the Number of count that has been liked for particular link... Just Cont.. No like button No dialogue Nothing

相关标签:
2条回答
  • 2021-01-26 23:56

    Just do a simple url request to the Graph API:

    http://graph.facebook.com/[FULL URL]
    
    Example:
    http://graph.facebook.com/http://www.stackoverflow.com
    
    Edit: (an example with "LIKES")
    http://graph.facebook.com/http://www.imdb.com/title/tt0117500/
    

    Awesome, isn't it?

    0 讨论(0)
  • 2021-01-27 00:05

    Just wanted to mention that if your URL has any question marks or ampersands in it, you will need to use a different notation:

    http://graph.facebook.com/?id=[PROPERLY ENCODED FULL URL]
    

    For example: http://graph.facebook.com/?id=http://mydomain.com/viewsomething.php%3Fid%3D2

    0 讨论(0)
提交回复
热议问题