1
我無法下載從谷歌驅動器文件使用下述代碼如何從谷歌驅動器使用C#
string url = https://drive.google.com/uc?export=download&id=XXXX
WebClient client = new WebClient();
client.Credential = new NetworkCredential("XXXX","XXXX");
client.DownloadFile(url,@"D:\\test.xls");
能否請你建議我如何下載使用Web客戶端使用用戶證書文件下載文件?
https://developers.google.com/drive/v3/web/quickstart/dotnet是不是出於某種原因的選項? – Vladimir