I'm using straight HTTP communication to read my calendar. So far,
I've been successful in reading all the entries, authenticating, and
adding new events. I'm trying to move on to updating and deleting
events.
I noticed talk about an "Edit URI/URL" in the <event> XML but I don't
see that in the XML that is being returned by the server (using the
"full" URL). Instead, I figured I'd use the HREF value on the <link
rel="self" type="application/atom+xml"
href="http://www.google.com/calendar/feeds/....."/>.
I set the HTTP Method to be "POST" and then add the following headers:
Content-Length=0
X-HTTP-Method-Override=DELETE
Authorization=GoogleLogin auth=<the auth token I received during my
authentication>
Unfortunately, I keep getting a "400: Bad Request" error.
Am I missing something here? Should I be posting to a different URL?