次のように Google ドキュメントにドキュメントをアップロードしています。
DocumentsService myService = new DocumentsService("");
myService.setUserCredentials("username@domain.com", password );
DocumentEntry newEntry = myService.UploadDocument(@"C:\Sample.txt", "Sample.txt");
しかし、3 MB のファイルをアップロードしようとすると、例外が発生します。
タイプ 'Google.GData.Client.GDataRequestException' の未処理の例外が Google.GData.Client.dll で発生しました追加情報: リクエストの実行に失敗しました: http://docs.google.com/feeds/documents/private/full
大きなファイルを Google ドキュメントにアップロードするにはどうすればよいですか? Google API ver2 を使用しています。