如何将视频上传到YouTube [Xamarin.forms(Portable)]



我正在尝试将视频上传到 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不兼容。

相关内容

  • 没有找到相关文章

最新更新