Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create a new file via the google drive api. I am issuing a insert request which works fine and I get a valid response. The file also appears in the drive explorer. However when I attempt to open the file from the explorer I get an error which says "Sorry, we were unable to find the document at the original source. Verify that the document still exists." I also get a "Not Found" error if I attempt to upload data for the file via the API.

I can also reproduce the problem from the API Explorer. For the request body I enter a title ("text.txt"), a mime type ("text/plain") and the parent folder is "root". The file is created OK but when I attempt to open it, from the drive explorer, I get the "Sorry, we were unable to find the document at the original source. Verify that the document still exists." error.

Is this a bug or am I doing something wrong?

UPDATE: Ran the same code today and the problem seems to have been fixed ;-)

share|improve this question
1  
Can you show a code sample? – Jay Lee Dec 17 '12 at 19:59
I am issuing a post request to googleapis.com/drive/v2/files with a json payload containing the title, parent and mimetype. This works with no problems. I get a response with all the correct metadata for the file. Since the exact same problem occurs from the google drive API explorer I'm not sure a code sample is going to be much help. – blissland Dec 17 '12 at 20:10
Can you please show the request and response. – Ali Afshar Dec 18 '12 at 4:22
Ran my exact same program today and the problem seems to have been fixed. Thanks for you help. – blissland Dec 18 '12 at 10:20

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.