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) {
});