我正在创建一个UWP应用程序,用于从Google日历中提取事件列表并使用以下代码块命中错误
credential = await GoogleWebAuthorizationBroker.AuthorizeAsync(
GoogleClientSecrets.Load(stream).Secrets,
new[] { CalendarService.Scope.Calendar},
"user", CancellationToken.None, new FileDataStore("Books.ListMyLibrary"));
" FileDataStore"正在标记以下错误
The type or namespace name 'FileDataStore' could not be found (are you missing a using directive or an assembly reference?)
但我有以下使用声明
using Google.Apis.Util.Store;
有什么明显的我做错了吗?
谢谢!
答案 0 :(得分:1)
詹姆斯 通常使用Visual Studio,如果您有正确的using语句并且仍然出现该错误,则需要一个程序集引用。
根据this article, in step 3,,您需要为项目添加对Google Data Api程序集的引用。