使用.NET API在Google云端硬盘中看不到新的电子表格

时间:2015-06-30 11:25:55

标签: c# google-api google-drive-api google-api-dotnet-client service-accounts

我使用Google API NET创建了一个谷歌电子表格,如下所示。我没有收到任何异常,从代码我也能够检索文件ID。但是,当我查看谷歌驱动器时,我没有看到文件。我应该做些什么来通知谷歌驱动器。我也刷新了我的驱动器。但没用。有什么想法吗?

我验证了我的服务,如下所示:

authenticate.cs

public class SerivceAccount
    {
        private const string ServiceAccountEmail = "182464555438-@developer.gserviceaccount.com";
        private static readonly X509Certificate2 Certificate = new X509Certificate2("ADExpress.p12", "notasecret", X509KeyStorageFlags.Exportable);

        readonly ServiceAccountCredential _credential = new ServiceAccountCredential(
               new ServiceAccountCredential.Initializer(ServiceAccountEmail)
               {
                   Scopes = new[]
                   {
                       "https://spreadsheets.google.com/feeds",
                       DriveService.Scope.Drive,
                       "https://www.googleapis.com/auth/drive.file"
                   }
               }.FromCertificate(Certificate));

        public bool Authenticate()
        {
            var isAuthenticated = false;
            try
            {
                if (!_credential.RequestAccessTokenAsync(System.Threading.CancellationToken.None).Result)
                    throw new InvalidOperationException("Access token request failed.");
                isAuthenticated = true;
            }
            catch (Exception e)
            {
                Console.WriteLine("Exception in Authenticating " + e.ToString());
            }

            return isAuthenticated;
        }

        public ServiceAccountCredential Credential
        {
            get { return _credential; }
        }

    }

main.cs

var account = new SerivceAccount();
if (account.Authenticate())
            {
    FilesResource.InsertRequest request = service.Files.Insert(new Google.Apis.Drive.v2.Data.File()
                        {
                            Title = "Test",
                            Description = "Test",
                            MimeType = "application/vnd.google-apps.spreadsheet"
                        });
                        var file = request.Execute();
 Console.WriteLine("File ID: " + file.Id);
}

2 个答案:

答案 0 :(得分:0)

实际上这有助于解决我的问题。我需要提供文件的权限才能在UI界面中显示。希望这会有所帮助。

Permission newPermission = new Permission();
newPermission.Value = "yourdriveaccount@domain.com";
newPermission.Type = "user";
newPermission.Role = "reader";
service.Permissions.Insert(newPermission, file.Id).Execute();

答案 1 :(得分:0)

您正在使用服务帐户进行身份验证。

  

我也刷新了我的驱动器

检查自己的Google云端硬盘网络版本不会显示服务帐户创建的文件。服务帐户是其自己的用户。您的文件可能是在服务帐户Google云端硬盘帐户上创建的,您可以通过执行files.list

来测试该帐户

示例:

C:\Program Files (x86)\Windows Kits\8.1\bin\x86\signtool.exe

为了让其他用户看到该文件,您必须授予他们查看服务帐户创建的文件的权限。