i would like to post events via PHP into the "Event-Calendar", see screen... http://imageshack.us/photo/my-images/4/fbevents.png/
It works principle with the script below, i can call the event direct via...
facebook.com/event.php?eid={ID}
...but the event is not listet in the "Event-Calendar" ...and this is what i want!
-> How i do this right?
Best regards from germany, codeboot
ps. sorry for my english.
require_once ('fb-php-sdk/facebook.php');
$app_id = 'xxx';
$secret = 'xxx';
$id_profile = 'xxx';
$facebook = new Facebook(array(
'appId' => $app_id,
'secret' => $secret,
'cookie' => true,
));
$event_info = array(
'name' => 'abc event',
'description' => 'lorem ipsum dolor sit',
'owner' => 'eric example',
'location' => 'Location name and street',
'city' => 'berlin',
'start_time' => date('Y-m-d H:i', time()),
'privacy_type' => 'OPEN'
);
$event_id = $facebook->api('/'.$id_profile.'/events', 'post', $event_info);
offline_accessaccess_token assuming your user is not necessary "connected" 3) have you acquired thecreate_eventpermission? 4) I guess your event will be in the "Past Events" if it was created successfully 5) check this article – ifaour Aug 17 '11 at 9:03