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.

Until today I managed to retrieve past events on Facebook via FQL. But recently FQL had some changes and now there it became impossible to query past events including my friends attending all in one call.

Does anyone have a clue how to retrieve past event information via the Graph API? /events only returns upcoming events.

share|improve this question

2 Answers

Actually, I think you can get the same events through the /events call. If you go to the Facebook link for the Graph API, you can click on the "Events" link that looks like Events: https://graph.facebook.com/me/events?access_token=.... In the returned data, there's a paging section with both previous and next links. You should be able to get past event information through that.

edit: As Jeroen pointed out, you can also use since and until to filter more, and limit to reduce the number of results.

share|improve this answer
Thanks, I also found out that adding since=0 or until=time() results in much more events. Adding limit=x could help if the paging isn't for you. – Jeroen Bos Apr 10 '12 at 9:46
I'll edit that into the answer! Feel free to accept the answer if it worked by hitting the check box. :D – Waynn Lue Apr 10 '12 at 18:38

I had a problem when running the query without the start_time > 0 . It seems that facebook enters a start_time limit that is not visible, maybe not. So if you run the query don't forget that. In my case, without start_time > 0, it returned 6 events and with it returned 24. I had to search the internet a few hours before finding this and understanding why.

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.