gpt4 book ai didi

c# - 如何使用 OAuth 在 C# 中创建新的 Google Drive 服务

转载 作者:行者123 更新时间:2023-12-02 21:35:15 24 4
gpt4 key购买 nike

我正在尝试编写一个简单的命令行应用程序,用于将文件上传到 Google 云端硬盘。我正在按照此处提供的步骤进行操作:https://developers.google.com/drive/web/quickstart/quickstart-cs

他们提供的示例代码无法编译,特别是以下行:

var service = new DriveService(new BaseClientService.Initializer()
{
Authenticator = auth
});

这会返回错误:

“‘Google.Apis.Services.BaseClientService.Initalizer’不包含‘身份验证器’的定义”

显然 API 已更改,但我找不到执行此操作的新方法。

最佳答案

首先,您缺少身份验证代码。此外,如果您使用的 apis.drive.v2 无法工作,您所引用的教程也会使用旧版本的库。这适用于较新的库:我的教程 Google Drive api C# (还有一个winform示例项目)

但这里有一些如何让它发挥作用的示例:

UserCredential credential; 
credential = GoogleWebAuthorizationBroker.AuthorizeAsync(
new ClientSecrets { ClientId = "YourClientId", ClientSecret = "YourClientSecret" },
new[] { DriveService.Scope.Drive,
DriveService.Scope.DriveFile },
"user",
CancellationToken.None,
new FileDataStore("Drive.Auth.Store")).Result; }

上面的代码将为您提供用户凭据。它会弹出一个新的浏览器窗口,要求用户自动安装您的应用程序。 My Tutorial here

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

上面的代码允许您访问云端硬盘服务。看看我们如何向其发送从 Oauth 调用中获得的凭据?然后上传它的问题是调用 service.files.insert

// File's metadata.
File body = new File();
body.Title = "NewDirectory2";
body.Description = "Test Directory";
body.MimeType = "application/vnd.google-apps.folder";
body.Parents = new List<ParentReference>() { new ParentReference() { Id = "root" } };
try
{
FilesResource.InsertRequest request = service.Files.Insert(body);
request.Execute();
}
catch (Exception e)
{
Console.WriteLine("An error occurred: " + e.Message);
}

关于c# - 如何使用 OAuth 在 C# 中创建新的 Google Drive 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21569735/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com