Is it possible to programmatically add an event to a page using Facebook Graph API? If yes, what HTTP request shall be made?

For example, Startup Weekend has events on its Facebook page. These events can be added using Graph API Event object?

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

Yes it's possible.

Permissions:

  1. create_event
  2. manage_pages

So first you get the page id and its access token, through:

$facebook->api("/me/accounts");

The Result will be something like:

Array
(
    [data] => Array
        (
            [0] => Array
                (
                    [name] => Page Name
                    [category] => Website
                    [id] => XXXXXX
                    [access_token] => XXXXX
                )

            [1] => Array
                (
                    [name] => Page Name 2
                    [category] => Company
                    [id] => XXXXXXX
                    [access_token] => XXXXXXXX
                )
        )

)

UPDATE: To retrieve the page's access_token you could now call the page object directly like:

$page_info = $facebook->api("/PAGE_ID?fields=access_token");

The access token, if successful call, should be accessible: $page_info['access_token']

Now you get the Page ID and access token and use the events connection:

$nextWeek = time() + (7 * 24 * 60 * 60);
$event_param = array(
    "access_token" => "XXXXXXXX",
    "name" => "My Page Event",
    "start_time" => $nextWeek,
    "location" => "Beirut"
);
$event_id = $facebook->api("/PAGE_ID/events", "POST", $event_param);

And you are done! :-)

link|improve this answer
1  
this is exactly what I want! one more question, these access_token of pages expires? – fjsj Feb 7 '11 at 23:32
@jsj: I didn't really check, but I think yes they expire. – ifaour Feb 27 '11 at 20:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.