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'm searching for a few days now and I still haven't found a way to post events into a page I'm admin on, so I've decided to ask you. Can you do that in any way?

http://pastebin.com/WSHCDLdr

I've tried with "me/events" page and it works perfectly (even though the propagation delay is huge), but this is the user account. I want to post the events into a page I created on the same account, or into a page I'm admin on.

This is my code. If you know this thing is possible, and care to tell me what I'm doing wrong, or if the method is different, how to do it I would be very grateful.

Chris

share|improve this question

1 Answer

I think you need the page access_token and here how you get it:

$page_id = "XXXXXXXXX";
$page_access_token = "";
$result = $facebook->api("/me/accounts");
foreach($result["data"] as $page) {
    if($page["id"] == $page_id) {
        $page_access_token = $page["access_token"];
        break;
    }
}

Make sure you grant the manage_pages permission and add the access_token to the $event_info array.

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.