Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I got a demand to make a webservice that centralizes informations of many facebook accounts (data, photos, friends). The problem is: it can receive lot of requests in short time. For that reason, i need an eficient way to get all information of facebook in few requests, or i will get blocked.

I have read about FQL, that i can suppose request info about many users in same query. If its true, will be perfect. But i didnt found detailed info about FQL limitations. So i have fear about confirm the viability of this demand, counting that FQL will solve all my problem.

Is it a good way to solve the problem? If not, what can be done?

share|improve this question
Are you accessing the Facebook API anonymously? Typically you will be throttled immensely if you don't create a user-agent somewhere within the API for them to tie to your session. Also, if you're going to consume enormous amounts of Facebook data, you'll probably have to pay for some kind of privileged access. This is more general API usage, not Facebook in particular. – Droogans Oct 22 '12 at 14:28

1 Answer

up vote 0 down vote accepted

If you have a large number of request, I would recommend that you read that page from the documentation : https://developers.facebook.com/docs/reference/api/batch/

It presents all the existing possibilities to issue requests in batch.

Best,

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.