UWP 是否支持 Google 的 FileDataStore?
Is Google's FileDataStore supported in UWP?
我正在使用 Youtube api v3 并需要 FileDataStore (Google.Apis.Util.Store.FileDataStore)。我拥有所有必要的使用指令和 NuGet 包,但我仍然收到 "The type or namespace name 'FileDataStore' could not be found" 错误。
相同的代码适用于 Winforms 和 WPF。 UWP 不支持 FileDataStore 吗?有解决方法吗?
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 client library 目前不支持 UWP。
我们希望在 v2 版本中支持 UWP,但遇到了一些问题。有关 v2 的详细信息,请参阅 #787。
我们没有针对 native/UWP 支持(包括 #838)的具体时间表。这将是 weeks/months.
的问题
我正在使用 Youtube api v3 并需要 FileDataStore (Google.Apis.Util.Store.FileDataStore)。我拥有所有必要的使用指令和 NuGet 包,但我仍然收到 "The type or namespace name 'FileDataStore' could not be found" 错误。
相同的代码适用于 Winforms 和 WPF。 UWP 不支持 FileDataStore 吗?有解决方法吗?
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 client library 目前不支持 UWP。
我们希望在 v2 版本中支持 UWP,但遇到了一些问题。有关 v2 的详细信息,请参阅 #787。
我们没有针对 native/UWP 支持(包括 #838)的具体时间表。这将是 weeks/months.
的问题