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.

I am able to create an event using the Facebook JavaScript SDK. Now I want to create an event as the fan page creator. How can I do this? And how do I create an event for groups?

I am using the following code to create events:

FB.api('/me/events', 'post', {
    name: "title",
    start_time: "start time",
    end_time: "end time",
    description: "description",
    location: "location"
}, function (resp) {

});
share|improve this question
Replace your page id with the keyword me. – munjal Aug 30 '11 at 13:26

1 Answer

As explained in Graph API > PAGE doc :

To perform the operation as a Page, and not the current user, you must use the Page's access token, not the user access token commonly used for reading Graph API objects. This access token can be retrieved by issuing an HTTP GET to /USER_ID/accounts with the manage_pages permission. This will return a list of Pages (including application profile Pages) to which the user has administrative access, along with access_tokens for those Pages.

Then, using the Page access token :

You can create an event for a page by issuing an HTTP POST request to PAGE_ID/events with the create_event and manage_pages permissions.

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.