0

I am working with rest fb for the first time and am not able to fetch my friends checkins using the above fql query. The query - me/friends?fields=checkins.limit(5) gives me an exception saying

{
"error": {    
"message": "(#613) Calls to checkin_fql have exceeded the rate of 600 calls per 600 seconds.",
"type": "OAuthException",
"code": 613 }
}

Any suggestions will be helpful. Thanks !

user1952143
  • 155
  • 1
  • 10

1 Answers1

0

May be you are running a batch query, which exceeds the Facebook limit, You can try to run on graph request per second. It tracks one single request per second per auth-token and IP.

Have details on this link Do Facebook Graph API calls using field expansion count differently against the rate limits than batch calls

Community
  • 1
  • 1
Asraful Haque
  • 753
  • 8
  • 11