使用asp.net mvc从Google Drive Api下载文件的问题

问题描述

我可以在本地服务器上成功下载文件,但是在部署之后,我不能不下载就继续加载

  <a href="~/Home/DownloadFile/@item.Id">Download</a>

HomeController.cs

 public void DownloadFile(string id)
    {
        string FilePath = DownloadGoogleFile(id);
       
        response.addheader("Content-disposition","attachment; filename=" + Path.GetFileName(FilePath));
        Response.WriteFile(System.Web.Hosting.HostingEnvironment.MapPath("/GoogleDriveFiles/" + Path.GetFileName(FilePath)));
        Response.End();
        Response.Flush();
    }
    static string DownloadGoogleFile(string fileId)
    {
        Google.Apis.Drive.v3.DriveService service = GetService();

        string FolderPath = System.Web.Hosting.HostingEnvironment.MapPath("/GoogleDriveFiles/");
        Google.Apis.Drive.v3.FilesResource.GetRequest request = service.Files.Get(fileId);

        string FileName = request.Execute().Name;
        string FilePath = System.IO.Path.Combine(FolderPath,FileName);

        MemoryStream stream1 = new MemoryStream();
        request.MediaDownloader.ProgressChanged += (Google.Apis.Download.IDownloadProgress progress) =>
        {
            switch (progress.Status)
            {
                case DownloadStatus.Downloading:
                    {
                        Console.WriteLine(progress.BytesDownloaded);
                        break;
                    }
                case DownloadStatus.Completed:
                    {
                        Console.WriteLine("Download complete.");
                        SaveStream(stream1,FilePath);
                        break;
                    }
            }
        };
        request.Download(stream1);
        return FilePath;
    }

   
   public static Google.Apis.Drive.v3.DriveService GetService()
    {
        var CSPath = System.Web.Hosting.HostingEnvironment.MapPath("~/");
        UserCredential credential;
        using (var stream = new FileStream(Path.Combine(CSPath,"client_secret.json"),FileMode.Open,FileAccess.Read))
        {
            
            String FilePath = Path.Combine(CSPath,"DriveServiceCredentials.json");

            credential = GoogleWebAuthorizationbroker.AuthorizeAsync(
                GoogleClientSecrets.Load(stream).Secrets,Scopes,"user",CancellationToken.None,new FileDataStore(FilePath,true)).Result;
        }

        Google.Apis.Drive.v3.DriveService service = new Google.Apis.Drive.v3.DriveService(new BaseClientService.Initializer()
        {
            HttpClientinitializer = credential,ApplicationName = "GoogleDriveRestAPI-v3",});

        return service;
    }

我应该改变什么?我正在尝试从Google获取文件本身,而不是从浏览器获取SSL证书,并确保网络与此有关,因为我的网络目前不安全?

解决方法

向Google进行身份验证时,已安装的应用程序和网络应用程序之间会有区别。已安装的应用程序可以在当前计算机上的浏览器中打开授权窗口,Web应用程序需要打开Web浏览器以在用户计算机上进行授权。 GoogleWebAuthorizationBroker.AuthorizeAsync设计用于已安装的应用程序。它将打开Web浏览器以在无法正常工作的服务器上进行身份验证和授权。

对于Web应用程序,您应该使用GoogleAuthorizationCodeFlow

using System;
using System.Web.Mvc;

using Google.Apis.Auth.OAuth2;
using Google.Apis.Auth.OAuth2.Flows;
using Google.Apis.Auth.OAuth2.Mvc;
using Google.Apis.Drive.v2;
using Google.Apis.Util.Store;

namespace Google.Apis.Sample.MVC4
{
    public class AppFlowMetadata : FlowMetadata
    {
        private static readonly IAuthorizationCodeFlow flow =
            new GoogleAuthorizationCodeFlow(new GoogleAuthorizationCodeFlow.Initializer
                {
                    ClientSecrets = new ClientSecrets
                    {
                        ClientId = "PUT_CLIENT_ID_HERE",ClientSecret = "PUT_CLIENT_SECRET_HERE"
                    },Scopes = new[] { DriveService.Scope.Drive },DataStore = new FileDataStore("Drive.Api.Auth.Store")
                });

        public override string GetUserId(Controller controller)
        {
            // In this sample we use the session to store the user identifiers.
            // That's not the best practice,because you should have a logic to identify
            // a user. You might want to use "OpenID Connect".
            // You can read more about the protocol in the following link:
            // https://developers.google.com/accounts/docs/OAuth2Login.
            var user = controller.Session["user"];
            if (user == null)
            {
                user = Guid.NewGuid();
                controller.Session["user"] = user;
            }
            return user.ToString();

        }

        public override IAuthorizationCodeFlow Flow
        {
            get { return flow; }
        }
    }
}

查看完整的示例here