I am trying to get all facebook friends feed using the API. I want to retrieve 500 posts / user;
I want to know what is the best and efficient way to retrieve all those friends feeds.
I have tried until now to do the following:
- Get 10 friends, iterate trough each of them, and for each of them call the graph api and get the feed limited to 500 posts ( very long processing time ); Then, save the friends offset into database, and on next refresh do the same thing for the following 10 friends and so forth until all friends were crawled
- Do a cron job that will trigger a function that will do the things mentioned above every 5 minutes, for each user in the databas. But that means, iterate trough each user in the database, get 10 friends... etc. That will exceed the PHP.INI's max_execution_time(); setting that is stucked at 30 Seconds ( my hosting provider won't let me change that ')
- Do a Graph query that will get ALL friends, and iterance once trough them, and get all the feed for each of them, but this, again exceeds the max_execution_time() and it is useless.
It seems that all the tries mentioned above do TO much API calls.
What is the best way to do that faster, less resource costing and with less API calls?