I was wondering if you guys could help shed some light on best practices when it comes to querying Facebooks API.
I like to run a cron job every day that updates all my posts with a "comment_count" based on the number of Facebook comments the post has.
Generally, I gather all the permalinks of all the posts and make a cURL request to something like this: https://graph.facebook.com/?ids=http://site.com/post/1,http://site.com/post/2,http://site.com/post/3
However, there are two problems 1. A URL can only be so long. So, if I try to put all the posts in one URL and send it off, it gets cut off and doesn't work. 2. The server times out.
Does anyone have a good way to query an API like this and avoid these problems?
Thanks!