我在从Google日历中检索数据时遇到问题。 如果我使用Google Calendar v3 API,则在检索CalendarList或EventsList时会收到异常:
promise1.then(()=>promise2)
我的代码
[0:] Error Google.Apis.Requests.RequestError
Login Required [401]
Errors [
Message[Login Required] Location[Authorization - header] Reason[required] Domain[global]
]
API密钥当前没有应用程序限制
我尝试过的另一个变体
var service = new CalendarService(new BaseClientService.Initializer()
{
ApiKey = "...",
ApplicationName = "..."
} );
CalendarListResource.ListRequest req = service.CalendarList.List();
var calendarList = req.Execute();
.......
这里的情况很奇怪-在调试版本中可以正常运行,但是在发行版中,我收到的光标为空
第一和第二个变体有什么问题?