我正在尝试编写一个简单的命令行应用程序,将文件上传到Google云端硬盘。我正在按照此处提供的步骤进行操作:https://developers.google.com/drive/web/quickstart/quickstart-cs
他们提供的示例代码无法编译,特别是行:
var service = new DriveService(new BaseClientService.Initializer()
{
Authenticator = auth
});
这将返回错误:
“'Google.Apis.Services.BaseClientService.Initalizer'不包含'Authenticator'的定义”
显然API已经改变,但我找不到新方法。
答案 0 :(得分:5)
首先,您缺少验证码。如果您使用的apis.drive.v2不能正常工作,那么您所引用的教程将使用较旧版本的库。这个适用于较新的libarys:我的教程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);
}