This is what I am doing in PHP to get access to a bunch of group posts on Facebook. I'm then implementing a search function to search these posts.
$url2 = 'https://graph.facebook.com/'. $group_id . '/feed' . '?limit=30&access_token=' . $_SESSION['access_token'] ;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "$url2");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$json = curl_exec($ch);
$data = json_decode($json, TRUE);
So I broke it down and just found that putting the graph url into my browser yields a slow response. Limit set to 30 is ok, but up it to 300 and it is slow, up it to 1,000 and it crawls.
I've looked into paging but I would like to grab a large amount of data so I can search it. Caching really wouldn't work because it still takes so long to load that initial data.
Is there anyway to speed this up or am I stuck at the limitation of the Facebook Graph API?
