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.

Can you explain what is the best way to access the facebook api to retrieve a large amount of data?
Let's take the case where I want to get a large amount of posts ( user's post and friends posts ) and retrieve all the YouTube videos from them.
Is it faster to use the PHP SDK for the api or just providing the token and accessing the http://graph.facebook.com and getting the data with the php file_get_contents function?

share|improve this question
The best way is the way that works best for you. Not really a good question to ask on site here. – hakre Dec 30 '12 at 14:38
It is a matter of resources or bandwidth probably? I have tried to do this directly with PHP, access the graph api via the SDK, get the data, loop trough each friend, get all the posts, get the youtube links and then using the youtube gdata api to get all the details. That is great but it exceeds the maximum execution time set in PHP of 30 Seconds. Well, after that I have tried to do an ajax request on a php file, every 5 seconds, to get an ammount of friends, but it is to slow. I just need to get the data faster without blocking the entire application. – roshkattu Dec 30 '12 at 14:42
SDK versus Custom implementation will be the exact same bandwidth. The resource differences would be negligible as well. To deal with the timeouts, you should paginate the requests. To do this without blocking the experience for the user, just have an ajax request to a php file that gets friends. Not that complicated. – Tommy Crush Dec 30 '12 at 15:57

closed as not constructive by hakre, PeeHaa 埽, Jocelyn, Bo Persson, Frank van Puffelen Dec 30 '12 at 21:46

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

Browse other questions tagged or ask your own question.