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.

Can't figure out how to add permissions to my access token to access friends photos. I have:

//auth user
 if(empty($code)) {
   $dialog_url = 'https://www.facebook.com/dialog/oauth?client_id=' 
              . $app_id . '&redirect_uri=' . urlencode($my_url)
              . '&scope=friends_photos';
    echo("<script>top.location.href='" . $dialog_url . "'</script>");
  }
  //get user access_token
  $token_url = 'https://graph.facebook.com/oauth/access_token?client_id='
    . $app_id . '&redirect_uri=' . urlencode($my_url) 
    . '&client_secret=' . $app_secret 
    . '&code=' . $code
    . '&scope=friends_photos';

  $access_token = file_get_contents($token_url);

  $fql_query_url = 'https://graph.facebook.com/'
    . '/fql?q=SELECT+pid,object_id+FROM+photo_tag+WHERE+subject=301179'
    . '&' . $access_token;

     $graph_url = "https://graph.facebook.com/me?access_token=" 
       . $access_token;

     $user = json_decode(file_get_contents($graph_url));

 $fql_query_result = file_get_contents($fql_query_url);
  $fql_query_obj = json_decode($fql_query_result, true);

    echo '<pre>';
  print_r("query results:");
  print_r($fql_query_obj);

The query comes back empty.

share|improve this question

1 Answer

up vote 1 down vote accepted

You should use scope of OAuth dialog (see properties) to request permissions from user, later you just use his access_token.

$dialog_url = 'https://www.facebook.com/dialog/oauth?client_id=' 
              . $app_id . '&redirect_uri=' . urlencode($my_url)
              . '&scope=friends_photos';

BTW, there is no argument perms for https://graph.facebook.com/oauth/access_token

share|improve this answer
I'm still coming up empty see edit. – JoshDG Jan 27 '12 at 18:56

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.