Can I get the number of Facebook Likes a page that is not on my domain received?

前端 未结 3 1876
旧时难觅i
旧时难觅i 2020-12-29 08:03

Is it possible to get the number of Facebook Likes made on any url, even if I don\'t own that url\'s domain?

相关标签:
3条回答
  • 2020-12-29 08:26

    Yes, you can query specific URLs:

    https://api.facebook.com/method/fql.query?query=select%20like_count%20from%20link_stat%20where%20url=%27https://stackoverflow.com/%27&format=json

    0 讨论(0)
  • 2020-12-29 08:27

    You can always try by searching the social graph. For example, the Apple's Facebook page has about 162K likes https://graph.facebook.com/108521342513509

    But if you try to get the "likes" number directly, you don't get anything. http://graph.facebook.com/108521342513509/likes

    Here is the link to the documentation. You might try use the "search" URL. http://developers.facebook.com/docs/api

    0 讨论(0)
  • 2020-12-29 08:31

    But ofcourse you can sir:

    Page likes

    If it's a page you're wanting the amount of likes of, try such a thing as this:

    http://graph.facebook.com/[Page name or ID here without the brackets]?fields=likes

    Example:

    http://graph.facebook.com/Facebook?fields=likes

    Result:

    {
        "likes": 90064323,
        "id": "20531316728"
    }
    

    Specific URL likes

    If it's a specific URL you want to get the likes of, try Facebook's FQL. You can query the Facebook databases this way and get some info on URL's, here's an Example:

    https://api.facebook.com/method/fql.query?query=select like_count from link_stat where url='https://www.facebook.com/'&format=json

    Result:

    [{"like_count":1433567}]
    

    The format in which this is returned can either be XML or JSON, where XML is the default. You can chance the format by adding the

    &format=json

    at the end.

    There are multiple fields and tables that can be queried from, you can see all that good stuff in the sources.

    Hope this helped some people, cause I was searching quite abit for it.

    Have a nice day.

    Sources:
    Graph API: http://developers.facebook.com/docs/reference/api/
    FQL: http://developers.facebook.com/docs/reference/fql

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