我正在嘗試使用ASPSnippets.GoogleAP.dll
和Google.Apis.Drive.v3.dll
從Google Drive下載文件。但面臨一些挑戰。正在下載文件,但它存在一些奇怪的HTML內容。如何從c#中的谷歌驅動器下載文件?
我使用下面的代碼下載:
GoogleConnect.ClientId = "xxxx.apps.googleusercontent.com";
GoogleConnect.ClientSecret = "xxxxxx";
GoogleConnect.RedirectUri = Request.Url.AbsoluteUri.Split('?')[0];
GoogleConnect.API = EnumAPI.Drive;
if (!string.IsNullOrEmpty(Request.QueryString["code"]))
{
string code = Request.QueryString["code"];
string json = GoogleConnect.Fetch("me", code);
GoogleDriveFiles files = new JavaScriptSerializer().Deserialize<GoogleDriveFiles>(json);
//Remove the deleted files.
var driveService = new DriveService();
Label1.Text = theHiddenField1.Value;
WebClient wb = new WebClient();
wb.DownloadFile(theHiddenField1.Value, "C://" + fileName);
}
else if (Request.QueryString["error"] == "access_denied")
{
ClientScript.RegisterClientScriptBlock(this.GetType(), "alert", "alert('Access denied.')", true);
}
else
{
GoogleConnect.Authorize("https://www.googleapis.com/auth/drive.readonly");
}
有人可以幫我解決這個問題?
你可以發佈你收到的錯誤消息嗎?或者你沒有收到錯誤,它只是不下載? – Jay266
@ Jay266我沒有收到任何錯誤msg文件正在下載soem html內容。 –
那麼html說什麼? –