I am trying to get the logged in user's pictures (Not profile pictures, but pictures from albums). So I figured I would use

[facebookInstance requestWithGraphPath:@"me/albums" andDelegate:self];

However the result object obtained is empty.

 (gdb) po result
 {
     data =     (
     );
 }

I also tried

[facebookInstance requestWithGraphPath:@"me/photos" andDelegate:self];

but I still got the same results. So I was wondering if there is something wrong I am doring with permissions? The permission I have right now is "read_stream". I hope this should be good enough, but I am not sure.

link|improve this question

78% accept rate
feedback

1 Answer

Apparently I did not read the documents correctly. I do require "user_photos" permission. Now it works!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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