Facebook id variable limitation

I am making API calls to extract simple data from Facebook pages:

/[page_id]?fields=likes,talking_about_count,checkins

I know that I can get multiple results by providing multiple identifiers using the ids variable:

/?ids=[page_id],[page_id],[page_id]&fields=likes,talking_about_count,checkins

My problem is that I do not know how many identifiers I can get at one time. I know that the limit for a batch request is 50, but I can not find the documentation for the ids variable.


UPDATE: It seems that this limit has been removed in version 2.0 of the chart API, but I'm still looking for an official answer.

+4
source share
1 answer

Graph Explorer . 140 . 140 Graph API ids :

{
  "error": {
    "message": "(#100) Too many IDs. Maximum: 50. Provided: 140.", 
    "type": "OAuthException", 
    "code": 100
  }
}

, 50.

API Facebook

+10

Source: https://habr.com/ru/post/1548480/


All Articles