我上传到Google云端硬盘服务帐户文件的位置 [英] where are my upload to google drive's files for service account

查看:97
本文介绍了我上传到Google云端硬盘服务帐户文件的位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有下面的代码将文件上传到我的Google服务帐户.它正在工作,但是我想知道文件在哪里?我可以使用哪个帐户登录Google驱动器并获取文件,我可以使用多少空间?服务帐户是否有类似Google Drive UI的东西?

I have the code below that uploads a file to my Google service account. It is working, but I want to know where is the file? Which account can I use to login to google drive and get the file and how much space can I use? Is there anything like google drive UI for service accounts?

private static Google.Apis.Drive.v2.Data.File insertFile(
      String title, 
      String mimeType, 
      MemoryStream FileStream)
    {
        String serviceAccountEmail = "XXXXXX@developer.gserviceaccount.com";

        var certificate = new X509Certificate2(
             @"XXXXXXprivatekey.p12", 
             "notasecret", 
             X509KeyStorageFlags.Exportable);

        ServiceAccountCredential credential = new ServiceAccountCredential(
           new ServiceAccountCredential.Initializer(serviceAccountEmail)
           {
               Scopes = new[] { DriveService.Scope.Drive }
           }.FromCertificate(certificate));

        // Create the service.
        DriveService service = new DriveService(
                                   new BaseClientService.Initializer()
        {
            HttpClientInitializer = credential,
            ApplicationName = "Drive API Sample",
        });

        // File's metadata.
        Google.Apis.Drive.v2.Data.File body = 
                  new Google.Apis.Drive.v2.Data.File();
        body.Title = title;
        body.Description = title;
        body.MimeType = mimeType;

        FilesResource.InsertMediaUpload request = 
              service.Files.Insert(body, FileStream, mimeType);
        request.Upload();

        Google.Apis.Drive.v2.Data.File file = request.ResponseBody;

        return file;
    }

推荐答案

没有服务帐户的UI.这些文件只能由您的应用访问.

There is no UI for Service Accounts. The files are only accessible to your app.

这篇关于我上传到Google云端硬盘服务帐户文件的位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆