Google api 日历对象的摘要值

Google api 日历对象的摘要值,google-api,google-calendar-api,Google Api,Google Calendar Api,我认识到日历列表的返回已更改。摘要值是人名,但现在返回电子邮件地址 我的问题是如何使用日历API获取日历名称 测试的url: ◆ 以前 { "kind": "calendar#calendarList", "items": [ { "kind": "calendar#calendarListEntry", "etag": "\"1578551131788000\"", "id": "test@test.com", "summary": "Test Calendar

我认识到日历列表的返回已更改。摘要值是人名,但现在返回电子邮件地址

我的问题是如何使用日历API获取日历名称

测试的url:

◆ 以前

{
 "kind": "calendar#calendarList",
 "items": [
  {
   "kind": "calendar#calendarListEntry",
   "etag": "\"1578551131788000\"",
   "id": "test@test.com",
   "summary": "Test Calendar", // <-- calendar's name
   "timeZone": "Asia/Tokyo",
{
“种类”:“日历#日历列表”,
“项目”:[
{
“种类”:“日历#日历列表”,
“etag”:“157855131788000”,
“id”:”test@test.com",

“摘要”:“测试日历”,//谷歌日历中当前有一个bug。它不会像文档中那样返回摘要中的标题

Calendar.get on my primary Calendar returns

{
 "kind": "calendar#calendar",
 "etag": "\"KfTgGrEyu1otuO_8YfN8ka6X3tg\"",
 "id": "xxx@gmail.com",
 "summary": "xxxx@gmail.com",
 "description": "test",
 "timeZone": "Europe/Copenhagen",
 "conferenceProperties": {
  "allowedConferenceSolutionTypes": [
   "eventHangout"
  ]
 }
}
文档说明日历资源应该返回

summary=日历的标题


您是否尝试过制作日历。获取?@DaImTo感谢您的评论。是的,我尝试过,得到的结果与列表相同。将您的评论添加到错误报告中,当修复错误时,您将收到通知。
{
 "kind": "calendar#calendar",
 "etag": "\"KfTgGrEyu1otuO_8YfN8ka6X3tg\"",
 "id": "xxx@gmail.com",
 "summary": "xxxx@gmail.com",
 "description": "test",
 "timeZone": "Europe/Copenhagen",
 "conferenceProperties": {
  "allowedConferenceSolutionTypes": [
   "eventHangout"
  ]
 }
}