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.
source
share