Facebook Like button and MySQL database

后端 未结 1 1092
日久生厌
日久生厌 2021-01-15 14:21

I want to take the numbers of likes and saving it in a database when a user liked something in the database to add +1 and when a user does not like to be removed from the da

相关标签:
1条回答
  • 2021-01-15 14:53

    To get number of likes for particular page you can perform FQL

    SELECT like_count FROM link_stat WHERE url="url is here"
    

    http://developers.facebook.com/docs/reference/fql/link_stat

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