my request seems to be empty:
$data = file_get_contents('https://graph.facebook.com/my_user_id/photos?acess_token=xxx');
echo '<pre>' , var_dump($data), '</pre>';
writes out bool (false) in the browser.
Got the permissions for my photos as well as photos of my friends.
Trying the request with Facebook Graph API tool http://developers.facebook.com/tools/explorer/?method=GET&path=my_user_id%2Fphotos
works well, it returned the json object which I would love to have as well.
It seems to me, thats depending on the access_token.
I created access_tokens showed like here: http://developers.facebook.com/docs/authentication/ and it worked for some of my test accounts ( I got the json data), but not for all, so I asked myself,
how to create the "ultimate" access token for every user whom my app want to access his photos?
I can remeber a time, when I created an access_token like shown here http://developers.facebook.com/docs/authentication/ and it worked for ages...
TIA.
UPDATE:
Added some testers to my app, but still the request for their images is empty, but with one tester it worked, as well for the admin. crazy.
Also checked out the dummy facebook test users below the testers. Went to my app, was asked for the permissions (user_photo, friends_photo), but ehen I wasnt redirected to the page where I dump the photo data, instead I landed on the profile page of the dummy user...seems again that there went something wrong.
Any idea whats still wrong?
Here you can see the app roles:

Sandbox mode is deactivated. All settings here:

