statistics - Facebook Page Stats (when it's not your page) -


i trying research paper company, , need @ competitors facebook basic stats. wondering there service or facebook link show me how many likes page has? understand wont able break-down of stats fine. noticed these pages trying basic stats have either hidden stat or facebook no longer shows it?

you can access insights stats of pages issueing requests

/{page_id}/insights/page_fans_country?access_token={app_access_token} /{page_id}/insights/page_storytellers_by_country?access_token={app_access_token} 

you need @ least app access token being able request stats:

any valid access token can used publicly available metrics (currently page_fans_country or page_storytellers_by_country).

an example output cocacola page in first case (replace {app_access_token} , {page_id} real values):

{   "data": [     {           "value": {             "br": 7647998,              "us": 5235912,              "mx": 2226214,              "ph": 1580316,              "ar": 1470243,              "fr": 1318475,              "in": 1216773,              "th": 1152195,              "gb": 1045901,              "it": 929906,              "id": 751678,              "eg": 751109,              "es": 743127,              "co": 696836,              "au": 691082,              "tr": 637989,              "cl": 563704,              "de": 541448,              "pl": 520851,              "pk": 460125,              "ve": 447073,              "vn": 442866,              "iq": 432159,              "pt": 431431,              "ca": 400651,              "ro": 388648,              "kh": 370813,              "pe": 335064,              "ec": 303637,              "bd": 282001,              "tw": 266267,              "pr": 250198,              "tz": 245476,              "uy": 238471,              "ma": 232024,              "ie": 230698,              "bg": 227318,              "hr": 223257,              "et": 213823,              "bo": 209638,              "mk": 202446,              "kr": 202340,              "ch": 196162,              "sa": 189885,              "ug": 187797           },            "end_time": "2015-06-02t07:00:00+0000"         }       ],        "title": "lifetime likes country",        "description": "lifetime: aggregated facebook location data, sorted country, people page. (unique users)"     }   ],    "paging": {     "previous": "https://graph.facebook.com/v2.3/cocacola/insights/page_fans_country?debug=all&limit=1&pretty=0&suppress_http_code=1&since=1432716363&until=1432975563",      "next": "https://graph.facebook.com/v2.3/cocacola/insights/page_fans_country?debug=all&limit=1&pretty=0&suppress_http_code=1&since=1433234763&until=1433493963"   } } 

furthermore, can request overall page's stats via

/{page_id}?fields=id,name,likes,talking_about_count,were_here_count&access_token={app_access_token} 

this result in

{   "id": "40796308305",    "name": "coca-cola",    "likes": 90712576,    "talking_about_count": 345288,    "were_here_count": 0 } 

for cocacola page.

see


Comments

Popular posts from this blog

javascript - Bootstrap Popover: iOS Safari strange behaviour -

Magento/PHP - Get phones on all members in a customer group -

session - Logging Out Using PHP -