0

A couple of days ago, my iOS application stopped updating Google Drive documents (creation still works). Here is the code I have been using successfully to create GTLQueryDrive queries for over a year:

query = [GTLQueryDrive queryForFilesUpdateWithObject:file fileId:file.identifier uploadParameters:uploadParameters];

Although executing this query returns no errors, documents are never updated. I tried changing this (since the above method doesn't seem to appear in the documentation) to:

query = [GTLQueryDrive queryForFilesPatchWithObject:file fileId:file.identifier];
query.uploadParameters = uploadParameters;

However that returns this error:

Error Domain=com.google.GTLJSONRPCErrorDomain Code=400 "The operation couldn’t be completed. (Unsupported content with type: application/json-rpc)"

Similar breakage has occurred before with this method of query creation - can anyone point me to a more reliable way to update documents?

Community
  • 1
  • 1
Jesse
  • 1,117
  • 10
  • 9

1 Answers1

0

There was a temporary glitch, this should be working again now.

Cheryl Simon
  • 46,552
  • 15
  • 93
  • 82
  • indeed, this did seem to start working again briefly - however, thing seem to have broken again - same results as before, can you confirm? – Jesse May 15 '14 at 16:22