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.

I have a problem with getting photos using facebook graph API. I'm getting the empty result.

Permissions that i gave:

$par['req_perms'] = "publish_stream,
                 offline_access,
                 user_status, user_photos or friend_photos, 
                 user_videos or friend_videos, read_stream,
                 user_likes or friend_likes, 
                 user_events or friend_events,
                 email, user_groups";
share|improve this question
You need to post example code. Without it, this is a very vague question. – Mike Sherov Jun 29 '10 at 3:36
i used normal github example by editting github.com/facebook/php-sdk – kasun Jun 29 '10 at 3:39
these are the permissions i gave $par['req_perms'] = "publish_stream, offline_access, user_status, user_photos or friend_photos, user_videos or friend_videos, read_stream, user_likes or friend_likes, user_events or friend_events, email, user_groups"; – kasun Jun 29 '10 at 3:40
it is work for this $feeds = $facebook->api('/'."userid".'/feed?limit=25'); not for this $albums = $facebook->api('/'."userid".'/photos); – kasun Jun 29 '10 at 3:44

1 Answer

You need to comma separate each permission. You can't say "...user_photos or friend_photos...", you need to say "...user_photos,friend_photos..."

share|improve this answer
still not works – kasun Jun 29 '10 at 3:57
@Mike Sherov Did u done this before? – kasun Jun 29 '10 at 3:58
Yes, I have. You need to make sure you visit a page with the req_perms code on it so the user you're looking up has granted the corrected permissions. – Mike Sherov Jun 29 '10 at 4:06
i didn't get u. – kasun Jun 29 '10 at 4:08
this is the output i am getting after decoding array(1) { ["data"]=> array(0) { } } an empty array – kasun Jun 29 '10 at 4:09
show 4 more comments

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.