Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add a Facebook Event with new Graph API

I am trying to create an event using Facebooks api. (From a django app) Has anyone created an event with the new graph api?

like image 306
kkubasik Avatar asked Apr 22 '10 13:04

kkubasik


People also ask

How do I update my Facebook Graph API?

Implement a New VersionIn the App Dashboard Settings > Advanced, scroll to the Upgrade API Version section.

How do I make a graph API on Facebook?

Go to Tools – Graph API Explorer to generate Access Tokens for various kinds of API that you would like to use in your app. Choose the app and kind of token you need in the drop down menus in the left part of the screen. Then click “Generate Access Token”.

How do I use Facebook Graph API and extract data?

To use the Graph API Explorer tool, go to developers.facebook.com/tools/explorer. Generate the access token you need to extract data from the Facebook Graph API by selecting Get User Access Token from the App Token drop-down menu under the name of your app.


1 Answers

Check here: http://developers.facebook.com/docs/api#publishing

Make a POST call to /PROFILE_ID/events with the required informations. Unfortunately they don't have all the possible arguments listed, but they can be found in the REST API docs under Events.create.

like image 167
Ronni Egeriis Avatar answered Nov 01 '22 12:11

Ronni Egeriis