UWP 是否支持 Google 的 FileDataStore?



我正在使用youtube API V3,并且需要fileedatastore(google.apis.util.store.filedatastore)。我拥有所有必要的使用指令和Nuget软件包,但我仍然得到"无法找到的类型或命名空间名称'FileDatastore'的错误。

相同的代码在Winforms和WPF中都起作用。UWP中不支持Fifatatastore吗?有解决方法吗?

  UserCredential credential;
            using (var stream = new FileStream("client_secrets.json", FileMode.Open, FileAccess.Read))
            {
                credential = await GoogleWebAuthorizationBroker.AuthorizeAsync(
                    GoogleClientSecrets.Load(stream).Secrets,
                    // This OAuth 2.0 access scope allows for full read/write access to the
                    // authenticated user's account.
                    new[] { YouTubeService.Scope.Youtube },
                    "user",
                    CancellationToken.None,
                    new FileDataStore(this.GetType().ToString())
                );
            }

Google .NET客户端库当前不支持UWP。

我们希望在V2版本中支持UWP,但遇到了一些问题。有关V2详细信息,请参见#787。

我们没有特定的时间尺度来从事本机/UWP支持(包括#838)。这将是几周/几个月的问题。

相关内容

  • 没有找到相关文章

最新更新