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 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);
share|improve this question
So what exactly isn't working? What kind of result are you expecting and what result are you actually getting? – Darvex Aug 28 '12 at 9:18

closed as not a real question by CBroe, legoscia, Druid, edorian, Clyde Lobo Aug 29 '12 at 13:33

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You need create_event permission to post events using Facebook API. I think you already done with that.

In your code time() + 60*60 is the doubtful section for me. I don't think it returns a ISO-8601 format date time. Please correct it.

Follow documentation : facebook create event

share|improve this answer
i did specify all of the required permissions, also i have fixed the start_tim date format to iso-8601 format here is the update code still doesn't work – Willie Johnson Aug 28 '12 at 20:30
please share the returned json data by facebook api – Satish Pandey Aug 29 '12 at 4:50

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