我正在尝试将视频上传到 YouTube
,但是它在Xamarin.Forms (Portable)
项目中不起作用。有什么方法可以通过Xamarin.Forms (Portable)
YouTube
中上传视频 var initializer = new GoogleAuthorizationCodeFlow.Initializer
{
ClientSecrets = new ClientSecrets
{
ClientId = Constants.API.Google.ClientID,
ClientSecret = Constants.API.Google.ClientSecret
},
Scopes = new[] { YouTubeService.Scope.Youtube }
};
var flow = new AuthorizationCodeFlow(initializer);
TokenResponse token = flow.LoadTokenAsync("user", CancellationToken.None).Result;
但是,每次我在TokenResponse token
中无效时,我不确定我应该在flow.LoadTokenAsync("user", CancellationToken.None)
user
。谢谢。
我担心Google .NET客户端库当前不支持Xamarin。请参阅问题:xamarin.forms
中的google.apis.auth.auth.auth.auth.platformservices这是因为Googlewebauthorizationbroker需要Google.apis.auth.platformservices的几个类,而Google.apis.auth.platformservices与Xamarin不兼容。