Application request limit reached for facebook - facebook

I got this error for some reason:
{
"error": {
"message": "(#4) Application request limit reached",
"type": "OAuthException",
"code": 4
}
}
From my investigation, daily request limit seem to be 100m requests. The Insights -> Developer -> Activity and Errors does not update in realtime (lagging by 4 days), there isn't any restrictions/throttling/errors to speak of. The highest request rate I had was on 21st, and it is 500k and I don't think i got any request limits reached errors (error highest was 1000 errors that day).
Any idea what I could be doing to resolve this? Or at least find out what limits are to my app?

I have same error.
I think there is a facebook bug: https://developers.facebook.com/bugs/442544732471951?browse=search_50bc5133cf13d5c74557627
Please subscribe to this error to solve it quickly...

Quote from here: Facebook Application Request limit reached
There is a limit, but it's pretty high, it should be difficult to hit unless they're using the same access tokens for all calls and not caching results, etc. It's 600 calls per 600 seconds per access token.

Related

Facebook Marketing API - interests limit data

I am trynig to hit Facebook's Marketing API for interests and interest suggestions.
I followed their online documentation and a few recent online articles. It seems straightforward but I'm starting to hit this issue:
{ "error": { "code": 1, "message": "Please reduce the amount of data you're asking for, then retry your request" } }
my request below:
I have played with the limits and the interests and get anything back but this issue.

Facebook API can't retrieve leads. Get error code 100 and error subcode 33

I have an application that makes 1 daily query to the API of leads to extract the information.
Following what the documentation, I send a GET request as follows:
https://graph.facebook.com/v3.2/165XXXXXXXXXXXX/leads?access_token=my_access_token&fields=created_time,platform,id,ad_id,form_id,field_data&limit=600
Where 165XXXXXXXXXXXX is the ID of my lead form and I use Curl to get the data and process it.
Everything worked fine for months, but for 2 days I stopped working and throws me the following error:
{
"error": {
"message": "Unsupported get request. Object with ID '165XXXXXXXXXXXX' does not exist, cannot be loaded due to missing permissions, or does not support this operation. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api",
"type": "GraphMethodException",
"code": 100,
"error_subcode": 33,
"fbtrace_id": "ASuIDvuhAhwahA-cWCcnov9"
}
}
I checked the form in the business account, to see if something happened with the form but everything is ok, nothing was modified, the form exists.
I have been checking for 2 hours that it could have happened but the errors exposed by FB do not indicate anything to me. Can anybody help me? What could have happened to stop working?

An unknown error has occurred with graph Facebook

I have an element on my website which shows facebook posts from a page and the amount of views/likes/comments. This stopped working all of a sudden and I have no idea why.
If I make the request with the graph api tester tool I get:
{
"error": {
"message": "An unknown error has occurred.",
"type": "OAuthException",
"code": 1,
"fbtrace_id": "CIHVxFhXIv/"
}
}
This is the request link I use with file_get_contents:
https://graph.facebook.com/v3.0/idofmypage/posts?fields=comments,full_picture,likes,message,picture,story,permalink_url,updated_time,from,insights.metric(post_impressions)&access_token=myaccesstoken
Did something change again with permissions or maybe a field is deprecated?
According to this fb new the Pages API and others have changed, and now you can only access the data if it's a page of your own.
Pages API: Until today, any app could use the Pages API to read posts or comments from any Page. This let developers create tools for Page owners to help them do things like schedule posts and reply to comments or messages. But it also let apps access more data than necessary. We want to make sure Page information is only available to apps providing useful services to our community. So starting today, all future access to the Pages API will need to be approved by Facebook.
Today I've started a project wich, in the begging, I need to recollect data and that's what I've found about it..

Facebook Graph API - Page request limited reached but have page_engaged_users

I'm developing an application that manages 100+ Facebook pages. On some page I'm getting the following error:
{
message: '(#32) Page request limited reached',
type: 'OAuthException',
code: 32,
fbtrace_id: 'CzEElQoxHuu'
}
The pages that display this message have page_engaged_users over the previous 24 hours.
I understand that from here if I have a single page_engaged_users I should be able to make 4800 requests. However each Facebook Page is making a max of 390 API requests per 24 hours.
Does anyone know that if I have at least one page_engaged_users in the previous 24 hours I can make up to 4800 requests?
I can't seem to find any contact information for Facebook to support ticket forum etc.

Facebook Graph API Issue An unexpected error has occurred

I am making the following call to facebook graph API to get data stream from one of my facebook group(closed group).
https://graph.facebook.com/GROUP-ID/feed?access_token=MY-TOKEN
This was working for the past one year. Yesterday it started giving the following error
{
"error": {
"message": "An unexpected error has occurred. Please retry your request later.",
"type": "OAuthException",
"code": 2
}
}
I tried using the access token of a different facebook user and it is working fine.
But when I tried using my token it is throwing error.
Then I tried adding limit to the API call like this
https://graph.facebook.com/GROUP-ID/feed?access_token=MY-TOKEN&limit=3
This worked fine. When I increased the limit beyond 3 the same error occurred. Any Idea?
Using the same access token I am able to access data from my other groups. So I think the token is valid. I am really confused. Any help is appreciated.