user2815936
user2815936

Reputation: 97

Getting all events for a user using Facebook Graph API

Calling the api like this, I only get events the user is attending.

        FBRequestConnection.startWithGraphPath("/me/events")

And this makes sense according to the docs (https://developers.facebook.com/docs/graph-api/reference/user/)

Events for this person. By default this does not include events the person has declined or not replied to

But how do I chance this to include the events the person "has declined or not replied to"?

Upvotes: 0

Views: 257

Answers (2)

QuotidianVoid
QuotidianVoid

Reputation: 619

I'm not sure you can do it in one call, but you can do it with three:

/me/events (gets "attending" and "maybe" events)
/me/events/declined (gets "declined" events)
/me/events/not_replied (gets "not_replied" events)

I'm still trying to find an option to do it in one call, but this is the fallback I'm using for now.

Upvotes: 4

Tobi
Tobi

Reputation: 31479

There is no endpoint for that in the Graph API as far as I know. It was possible with FQL though, but if your app is v2.1 or higher you can't use FQL anymore.

See

Upvotes: 1

Related Questions