Closed GoogleCodeExporter closed 9 years ago
We've found that this can be worked around by setting ETagAction to Ignore on
the request.
Original comment by scmcc...@gmail.com
on 13 May 2014 at 6:45
[deleted comment]
It's a property on the request object you get back from calling Patch,
before you call one of the execute methods.
Original comment by scmcc...@gmail.com
on 14 May 2014 at 11:56
Take a look in:
http://stackoverflow.com/questions/23649831/updating-calendar-event-giving-error
-the-specified-value-is-not-a-valid-quoted
a possible fix for 1.8.2 will be to try-catch adding etag.
Original comment by pele...@google.com
on 14 May 2014 at 3:35
Another option (maybe combined with what suggested above) is to add \" before
and \" after. So for etag = 0, we will have the following:
"etag": "\"0\""
That will be added only in case we don't already have it
Original comment by pele...@google.com
on 14 May 2014 at 3:38
Relevant code is available at
:https://code.google.com/p/google-api-dotnet-client/source/browse/Src/GoogleApis
/Apis/Requests/ClientServiceRequest.cs#240
Original comment by pele...@google.com
on 14 May 2014 at 3:48
https://codereview.appspot.com/96320045/
Original comment by pele...@google.com
on 14 May 2014 at 4:53
Original comment by pele...@google.com
on 15 May 2014 at 10:09
Original issue reported on code.google.com by
scmcc...@gmail.com
on 13 May 2014 at 6:21Attachments: