0

I have the following JS snippet:

$('.profile-link').each(function(){
      link = $(this)
      FB.api(link.attr('data-uid'), function(response) {
          link.text(response.name)
      });
})

And I have like 20 links of the class 'profile-link', the above code seems to work only for the first 3-4 links. So, my guess is that Facebook has a limit on number of API requests per second, is that right? If not, then how to solve the above problem?

1 Answer 1

0

The only unofficial info I could find is 600 calls per 600 seconds from a particular access token. you can find more info at the following threads:
http://forum.developers.facebook.net/viewtopic.php?id=56950
http://forum.developers.facebook.net/viewtopic.php?id=23561
http://www.quora.com/Whats-the-Facebook-Open-Graph-API-rate-limit

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.