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.

is it possible to fetch all events from facebook? I know that I can do it for specific user with events.get, but does anyone know another method?

share|improve this question

2 Answers

up vote 0 down vote accepted

Jevgenij, Facebook has millions of events. You have to filter on something. ifaour's code filters to the events for a particular user.

In my experience, this will give you only events which this particular user created or was invited to. Also, it excludes events which this user explicitly declined.

I have also tried querying the feed for a group, and filtering for feed items with "http://www.facebook.com/event.php?eid=". This seems to work pretty well for getting all events from a group, although you have to explicitly query for each event to get event information.

share|improve this answer

Yes, you can query the event and the event_member tables:

SELECT eid,name 
FROM event 
WHERE eid IN (
    SELECT eid
    FROM event_member
    WHERE uid=XXXXXXXXX
)
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.