views:

37

answers:

1

Any suggestions on how to get events from Facebook connected to a user in JSON with Python?

All documentation seems to be directed against building Facebook applications. My goal is to show an events listing on a web page.

A: 

You will need to make authenticated requests to facebook's API.
OAuth

You can find or create a python wrapper to Facebook's API.
http://wiki.developers.facebook.com/index.php/User:Python

Once you have that down, just make a request to Facebook API events.get method. http://developers.facebook.com/docs/reference/rest/events.get

Louis