I saw another post here but still can't get this to work, here is what i got. Facebook Graph API ERROR
$fbme = $facebook->api('/me');
$event_data = array(
'name' => $etitle,
'description' => $edesc,
'start_time' => time() + 60*60,
'end_time' => time() + 60*60*1000
);
$target_url = 'https://graph.facebook.com/' + $fbme['id'] + '/events?access_token=' + $facebook->getAccessToken();
$Curl_Session = curl_init();
curl_setopt($Curl_Session, CURLOPT_URL, $target_url);
curl_setopt($Curl_Session, CURLOPT_POST, 1);
curl_setopt($Curl_Session, CURLOPT_POSTFIELDS, $event_data);
$result = curl_exec($Curl_Session);
$cur_errno = curl_err($Curl_Session);
$cur_errMsg = curl_error($Curl_Session);
print 'Cur Exception:';
print 'Error #: ' + $cur_errno;
print 'Error Message: ' + $cur_errMsg;
curl_close($Curl_Session);
$event = $result;
print_r($event);