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

Popular posts from this blog

java - Jmockit String final length method mocking Issue -

asp.net - Razor Page Hosted on IIS 6 Fails Every Morning -

c++ - wxwidget compiling on windows command prompt -