Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need a query running in a CRONJOB that check if 2 FBuser are mutual friends: something like the following, but I get this error:

Warning: file_get_contents(https://graph.facebook.com/fql?q=SELECT......) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.0 400 Bad  Request in...

on the FBtool I get the following error:

{
 "error": {
"message": "(#601) Parser error: unexpected '+' at position 6.",
"type": "OAuthException",
"code": 601
 }
 } )

This is the script:

// get App AccessToken
$app_token_url = "https://graph.facebook.com/oauth/access_token?"
 . "client_id=" . $appId
 . "&client_secret=" .$secret
 . "&grant_type=client_credentials";

    $response = file_get_contents($app_token_url);
    $params = null;
    parse_str($response, $params);

  $App_access_token = $params['access_token'];

try { $permissions = $facebook->api('/'.$user1.'/permissions');
            } catch(Exception $o){  $log[] = "//***  error on   $user1/permissions > $o";   }
$permessi=$permissions[data][0];

if(array_key_exists('read_stream', $permessi) or array_key_exists('read_friendlists', $permessi) ) {

$fql_q = "SELECT 'uid1','uid2' FROM friend WHERE 'uid1'='$user1' AND 'uid2'='$user2'"; 
$fql_q = urlencode($fql_q); 
$fql_query_url = "https://graph.facebook.com"
  ."/fql?q=$fql_q"
  ."&access_token=$App_access_token";
 $fql_query_result = file_get_contents($fql_query_url);
$fql_query_obj = json_decode($fql_query_result, true);
if(is_array($fql_query_obj)){ 
$CountFriends = $CountFriends + 1;
}    
share|improve this question
What is your actual query that gives the syntax error in the Graph API Explorer? Btw., your query shown in your PHP code is definitively wrong, because you are treating column names as strings. – CBroe Nov 23 '12 at 13:34

1 Answer

Facebook offline access has been deprecated Follow this link: offline-access-removal

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.