jlezard
jlezard

Reputation: 1437

Facebook Oauth 2.0 and rate limiting

I am trying to extract Facebook ids from a list of emails using the url:

let url = "https://graph.facebook.com/search?q=" 
          + email.Replace("@","%40") 
          + "&type=user&access_token=" 
          + facebook.Token

After around 600 id extracts I get the error "The remote server returned an error: (400) Bad Request.". Is the facebook API/Search rate limited? If so where is the doc?

Upvotes: 3

Views: 1852

Answers (1)

BeRecursive
BeRecursive

Reputation: 6366

Facebook limits you to 600 calls/600 sec - but it does reset after 10 minutes. I can't find the documentation at the moment, but I was told this at a Facebook developer garage

Upvotes: 4

Related Questions