Reputation: 149
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
Reputation: 180147
With a valid access token, https://graph.facebook.com/me/subscribers
responds with something like:
{
"data": [
],
"summary": {
"total_count": 29
}
}
Upvotes: 1