facebook PHP SDK and Graph API Explorer: response from query on "object_url" is sometimes different -


i trying retrieve object_url info addresses like:

https://www.facebook.com/pages/1988/180038755381895?fref=ts https://www.facebook.com/1nkedandsexy?fref=ts 

the fql using (from php sdk) following:

select id, name profile id in (select id object_url url='" . $url . "') 

using graph api explorer able retrieve info on both urls. when submit fql through php sdk, following code, second url return infos. problem (maybe fact alias first character number?)?

$fql = "select id, name profile id in (select id object_url url='" . $url . "')"; $param = array(     'method' => 'fql.query',     'query' => $fql,     'callback' => '' ); $response = $facebook->api($param); 

thanx!


Comments

Popular posts from this blog

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

html - How to style widget with post count different than without post count -

url rewriting - How to redirect a http POST with urlrewritefilter -