我尝试使用Xamarin OAuth在C#中使用Google云端硬盘服务。我不能在DriveService构造函数中找到Authenticator属性。 这是我的身份提供者:
var auth = new OAuth2Authenticator( Constants.ClientId,Constants.ClientSecret,
Constants.Scope, new Uri(Constants.AuthorizeUrl), new Uri(Constants.RedirectUrl),
new Uri(Constants.AccessTokenUrl));
我在这里找到了关于同一主题的另一个问题。但是解决方案对我来说并不起作用:我无法从https://developers.google.com/drive/quickstart-cs编译源代码
我想在driveservice initilize中调用我的auth:
var service = new DriveService(new BaseClientService.Initializer()
{
???????????
});