Hello,
I'm working on a project that requires Google Calendar API. I manage to get a response from the POST and GET methods, but I don't from the DELETE method.
As you can see from this page : https://developers.google.com/google-apps/calendar/v3/reference/calendars/delete
My code is this:
Is there a way to get the feedback?
Thanks for your help.
Jmon.
I'm working on a project that requires Google Calendar API. I manage to get a response from the POST and GET methods, but I don't from the DELETE method.
As you can see from this page : https://developers.google.com/google-apps/calendar/v3/reference/calendars/delete
delete returns an empty response. I don't get any feedback from my call, the JobDone event is never called.Response
If successful, this method returns an empty response body.
My code is this:
B4X:
Dim job As HttpJob
job.Initialize("CalendarDelete", Me)
job.Tag = Tag
job.Delete("https://www.googleapis.com/calendar/v3/calendars/" & su.EncodeUrl(CalendarId, "UTF8") _
& "?access_token=" & oAuthAccessToken)
Is there a way to get the feedback?
Thanks for your help.
Jmon.