Request to get total count of Facebook page likes in v2.3 API

前端 未结 3 2145
攒了一身酷
攒了一身酷 2020-12-31 10:13

Previously I was using FQL for this, but this is deprecated as of v2.1 and I\'m moving over to v2.3 using the graph edge \"likes\".

Here is my URL:

h         


        
3条回答
  •  难免孤独
    2020-12-31 11:06

    What you are looking for the total number of people that have liked the page or what the page has liked?

    For example.

    https://graph.facebook.com/v2.3/56381779049/likes?access_token=&summary=true
    

    Will return what the Page PepsiUS has liked.

    https://graph.facebook.com/v2.3/56381779049?fields=likes&access_token=
    

    Will return the total number of people that have liked the page.

    {"likes": 32804486, 
    "id": "56381779049"}
    

    Varified here PepsiUS

提交回复
热议问题