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.

The following FQL was working properly and then for some reason it doesn't:

@userPhotos = @rest.fql_query("select src_big, src_big_width,src_big_height FROM photo     WHERE album_object_id IN 
                   (SELECT object_id FROM album WHERE owner = me())")

It produces a list of "one" album - the last album instead of producing a list of all albums owned by the user. I'm using FB explorer to check the FQL. It used to work properly but not now. Have you experienced that problem?

share|improve this question
This is a temporary, I hope, problem with FQL. This bug was reported by a couple of other developers. – user1388066 Jul 25 '12 at 22:52

3 Answers

what is album_object_id ?? ... i dont think this exists. isn't it

you can check objects here http://developers.facebook.com/docs/reference/fql/album/

share|improve this answer

Same query can be done using AID for both photo and album. It works fine for me.

Does your query working now? (if user1388066 was right and that was a bug)

share|improve this answer

I think this is caused by the following bug, which is now resolved: https://developers.facebook.com/bugs/421883904529161

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.