使用.net中的Google Drive API从谷歌驱动器下载文档
我想从Google Drive下载文档,因为我使用的是Google Drive API。我对Google Drive API非常陌生,因此任何人都可以告诉我如何从Google Drive下载文档?
我尝试使用此选项https://developers.google.com/drive/manage-downloads#downloading_google_documents,但我在线获得例外
HttpWebRequest request =(HttpWebRequest)WebRequest.Create(new Uri(file.DownloadUrl.ToString()));
authenticator.ApplyAuthenticationToRequest(请求); HttpWebResponse响应=(HttpWebResponse)request.GetResponse();
喜欢
{“底层连接已关闭:发送时发生意外错误。”}
{“无法从传输连接读取数据:现有连接被远程主机强制关闭。”}
请不要在.net中创建桌面应用程序
谁能帮我 ?
链接地址: http://www.djcxy.com/p/45893.html上一篇: Download document from google drive using Google Drive API in .net