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 use this query:

SELECT pid FROM photo WHERE owner=$friend_id;

It works fine, but for some users(that has more than 1 photo) this query returns only 1 record.

Then i tried this query:

SELECT pid FROM photo WHERE owner=$friend_id LIMIT 10;

But returned result is the same - only 1 record.

Permissions :

user_activities, user_photos, friends_activities,
friends_photos, publish_stream

What i have to do to get correct result for anyone user??

share|improve this question
Are they definitely the owner and not a tag? Have you tried running a similar api call in the developer tools at developers.facebook.com/tools/… – TommyBs Oct 31 '12 at 12:54

1 Answer

This depends on the friend's privacy settings for the albums and photos he/she shares/uploads.

Also, I noticed that the owner field in the photo table is not indexable but it is in the album table and hence you may need to use something like:

SELECT pid FROM photo WHERE owner = XXXXXX AND aid IN (
    SELECT aid FROM album WHERE owner = XXXXXX
)
share|improve this answer

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.