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.

Has anyone figured out how to delete an event using the Facebook php-sdk? Not finding documentation on how to do this.

share|improve this question
You might be interested in this SO question stackoverflow.com/questions/5012268/… – Pravin May 9 '11 at 19:36
Have you asked for the create_event permission? – ifaour May 9 '11 at 20:47

1 Answer

up vote 0 down vote accepted

This works for me.

$tokenArray = array(
    'access_token' => $token
);
$facebook->api('/'.$fbEventId, "DELETE", $tokenArray);
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.