I am getting the following error while I am trying to access my page using Facebook Graph API.
{
error: {
message: \"(#32) Page request limited reached\",
type:
It is related to your Page. An App limit reached message error would have the code error 4.
Since July 11, 2016 Facebook has "improved" the Facebook Graph API rate limit for page.
Now your current rate limit (current 24-hour window) is calculated using last 24-hour window number of engaged users.
Engagement includes a click on the Page or Page content.
NOTE: You can get this value with the Insights API page_engaged_users metric.
Your current rate is calculated by using:
You can check you current rate compared to your current rate limit on your page > Insights > API section:
https://www.facebook.com//insights/?section=navAPI
You can make 4800 calls for each engaged user during a 24-hour period.
Each Facebook Graph API response includes a X-Page-Usage header with call_count, total_cputime and total_time percentage values (There is no header if the Page's utilization is effectively 0%). When any of these metrics exceed 100, the app managing that page will be rate limited. Use that values to evaluate your API usage so you can balance it and never get blocked. Example of page utilization header:
X-Page-Usage : {'call_count' : 85, 'total_cputime' : 56, 'total_time' : 60}
If you still need a higher rate limit, consider requesting a rate limit increase.
Go to your App (not Page) dashboard:
https://developers.facebook.com/apps//dashboard/
Scroll down to the last block called "API limit at page level".
For more information, please see: