我在 Google Docs 上上传文件为:
DocumentsService myService = new DocumentsService("");
myService.setUserCredentials("username@domain.com", password );
DocumentEntry newEntry = myService.UploadDocument(@"C:\Sample.txt", "Sample.txt");
但是当我尝试上传 3 MB 的文件时,我得到一个异常:
Google.GData.Client.dll 中出现“Google.GData.Client.GDataRequestException”类型的未处理异常附加信息:请求执行失败: http ://docs.google.com/feeds/documents/private/full
如何将大文件上传到 Google 文档?我正在使用 Google API 版本 2。