Muki
Muki

Reputation: 149

How to get subscribers count using Facebook API?

Is there a way to get the subscribers count from a profile? I have been looking around at the version 2.2 api but couldn't find an option for that.

Upvotes: 0

Views: 947

Answers (1)

ceejayoz
ceejayoz

Reputation: 180147

With a valid access token, https://graph.facebook.com/me/subscribers responds with something like:

{
  "data": [
  ], 
  "summary": {
    "total_count": 29
  }
}

Upvotes: 1

Related Questions