facebook fql - Need current syntax for writing an FQL query in PHP -
because using graph comment information craps out @ volume (even pagination) need fql solution. unfortunately, documentation , blogs i've found contain deprecated samples making impossible me figure out correct syntax.
i need understand how this:
select object_id, post_id, fromid, time, text, username comment object_id in (select comments_fbid link_stat url='*** event href ***')
into php variable can access data decoded json object so:
$fql_obj = json_decode($fql_query, true);
i figured out. else confused append graph lookup , replace spaces +s:
$fql_query = "https://graph.facebook.com/fql?q=select+object_id,+post_id,+fromid,+time,+text,+username+from+comment+where+object_id+in+select+comments_fbid+from+link_stat+where+url='***eventhref***')"; $fql_obj = json_decode($fql_query, true);
Comments
Post a Comment