in the facebook-php-sdk there is an example.php file when we can get our personal information easily doing:
$user_profile = $facebook->api('/me');
of course I get:
Array ( [data] => Array (
and all my personal data, that is ok. But when i do
$facebook->api('/me/albums');
i get:
Array ( [data] => Array
(
)
)
and nothing more. What is failing? Its curious because when I try to get my albums using:
https://developers.facebook.com/tools/explorer/?method=GET&path=me%2Falbums
it works fine.