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.

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.

share|improve this question

1 Answer

What permissions did you accept for the access token?
You may be missing: user_photos

You can check your access token using https://developers.facebook.com/tools/debug to see what permissions is has.

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 15:22

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.