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
Post a Comment