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.

How can I edit and delete an event in Facebook using the Javascript SDK? I've been Googling for a day with no sucess!

Thanks for any help!

UPDATE:

After banging my head on the wall several times, I've finally discovered how to accomplish these tasks:

  • To edit an event:

    FB.api("/"+event_id, 'post', { name: evname, start_time:"2011-08-25T12:00:00", end_time:"2011-08-25T23:00:00", location: address, description: desc } , function(resp) { alert('ok'); });

  • To delete an event:

    FB.api("/"+event_id, 'delete', function(resp) { alert('ok'); });

share|improve this question
1  
Please post this as as answer. – phwd Aug 12 '11 at 16:10

1 Answer

you have to post DELETE request to delete event

FB.api("/"+eventID, 'DELETE', function() { 
    //do stuff
});

if you use FBJS

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.