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 the following FQL query to get any photos with location information attached from Facebook friends.

SELECT 
object_id, owner, album_object_id, place_id, src_big, src_small, caption 
FROM photo 
WHERE owner IN( SELECT uid2 FROM friend WHERE uid1 = me() ) AND place_id!=''

The call works if the logged in user has a small number of friends(30~50).

For users with a higher number of active friends (200+) I get a 500 from the API end point with the following message

{
    "error_code":1,
    "error_msg":"An unknown error occurred"
}

I tried the call in Graph API exploder but it simply times out.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.