I’m using Facebook’s JavaScript SDK to do something like
FB.api('/1234567890/events', 'POST', {
name: "My cute test event",
start_time: 1313161200,
end_time: 1313531700,
location: "Over the Rainbow"
}, function (res) {
// whatever
});
to create an event on a Facebook page. The user who is authenticated is an admin of that page 1234567890 and gave manage_pages and create_event permissions.
However, the event created does not belong to the page, but is instead created as an event of the authenticated user and thus only shows up in his friends’ stream, but not on the page specified.
How can I fix that?
I know that there is the /me/accounts API call that returns access tokens to do API calls on behalf of the user’s pages, but I don’t see where in Facebook’s JavaScript SDK I could actually change the access token.
(And yes, I know that creating events using Unix timestamps is bad. I’ll fix that as well, but I guess it doesn’t have anything to do with this problem.)
FB.api('/1234567890/events?access_token=xxxxxxx', 'POST', {.......– Vijay Aug 8 '11 at 13:59