Gui
Gui

Reputation: 9813

Facebook C# SDK - Api.Get("me/events") not returning events

I've tried to return the user events but with no success.

FacebookApp app = new FacebookApp();
dynamic eventos = app.Api("me/events");

In this example, am i doing something wrong? The user is already authenticated (i can get his information, posts of wall, etc).

Thanks

Upvotes: 0

Views: 1390

Answers (1)

Nate Totten
Nate Totten

Reputation: 8932

You must ask for the "user_events" extended permission. http://developers.facebook.com/docs/authentication/permissions/

Upvotes: 1

Related Questions