Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm running this query:

{"my_friends":"SELECT uid2 FROM friend WHERE uid1=me()",
 "check_ins":"SELECT coords, tagged_uids, author_uid, page_id, message, timestamp
              FROM checkin WHERE author_uid=me() OR author_uid
              IN (SELECT uid2 FROM %23my_friends)",
 "tagged_check_in_users":"SELECT uid from user
                          where ((uid in (select tagged_uids from %23check_ins))
                          OR (uid in (select author_uid from %23check_ins)))
                          AND uid <> me()"}

and I get "internal server error" when the current user has many friends (more than 200, more or less). When I change the "my_friends" table query and add a limit of 100 friends, the query works fine.

Does anyone have an idea what the problem is?

share|improve this question
Have you tried using the field expansion (developers.facebook.com/docs/reference/api/field_expansion) to get the same nested query effect without using FQL? May mitigate this problem. – James Pearce Sep 25 '12 at 5:21

1 Answer

I have found that this occurs with specific users. I have several of my users who have large numbers of friends like 250+. They invariably get this error but only on specific users. And those users will always throw a 500 error. I am doing my query on Shares and I can reproduce the error exactly every time. I am still searching for a fix or a way to avoid these errorsome users.

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.