I am currently using Facebook graph api search to search posts as
http://graph.facebook.com/search?q=iwatch&type=post&access_token=xxxxx
It returns in JSON format fields and use to include the like:count for a given post.
After reading the dev roadmap (https://developers.facebook.com/roadmap/) for changes after July 10th I am instructed to use the summary=true
param but I have no idea how to get this to work with search?
From FB blog on roadmap.
Removing 'count' from 'comments' Graph API connection We are removing the undocumented 'count' field on the 'comments' connection in the Graph API. Please request
{id}/comments?summary=true
explicitly if you would like the summary field which contains the count (now called 'total_count')
I have tried various combinations and searched for examples but no dice. Can anyone give me some advice on how to get the new summary=true to work within a search URL for searching posts?