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 am using the C# SDK to interact with facebook graph api in my asp.net mvc3 webapp

I used with success this code to add a event to my facebook account:

Dictionary<string, object> oParams = new Dictionary<string, object>();
oParams.Add("name", e.Title);
oParams.Add("start_time", e.StartDate.ToUniversalTime().ToString());
oParams.Add("description", e.Synopsys);

dynamic result = _fb.Post("me/events", oParams);

and now I'm trying to make the oposite operation (Remove that event) but it does not work and returns the exception: "(GraphMethodException - #100) Unsupported delete request."

This is the code I'm using to delete the event:

dynamic result = _fb.Delete("me/events/"+ e.FBID);

What is happening?

share|improve this question
which version of the sdk are you using? – prabir Apr 3 '12 at 18:55

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.