Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/365.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
我可以使用google日历api v3 python获取editLink和aclLink吗?_Python_Google Api_Google Calendar Api_Google Api Client_Google Api Python Client - Fatal编程技术网

我可以使用google日历api v3 python获取editLink和aclLink吗?

我可以使用google日历api v3 python获取editLink和aclLink吗?,python,google-api,google-calendar-api,google-api-client,google-api-python-client,Python,Google Api,Google Calendar Api,Google Api Client,Google Api Python Client,我当前的项目使用gdata,我可以通过以下调用轻松获得editLink和aclLink: calendar.GetEditLink().href calendar.GetAclLink().href 现在我尝试切换到api v3。我没有找到在V3API中获取editLink和aclLink的方法 { 'kind': 'calendar#calendarListEntry', 'foregroundColor': '#000000', 'description': 'FDSA FDS

我当前的项目使用gdata,我可以通过以下调用轻松获得editLink和aclLink:

calendar.GetEditLink().href
calendar.GetAclLink().href
现在我尝试切换到api v3。我没有找到在V3API中获取editLink和aclLink的方法

{
  'kind': 'calendar#calendarListEntry',
  'foregroundColor': '#000000',
  'description': 'FDSA FDS',
  'colorId': '24',
  'summary': 'C Forgie Geography - 201213',
  'etag': '"FDSA4321FDSA/Stic5525eNCO8rFKLA656Xshysg"',
  'backgroundColor': '#a47ae2',
  'timeZone': 'UTC',
  'accessRole': 'owner',
  'id': 'FDSA4321@group.calendar.google.com'
}
有没有办法在V3API中获取editLink和aclLink


非常感谢

您如何使用这些值?这是否仍然相关?嗨,@bossylobster,我们在网页中显示链接,以便用户可以导航到日历页。谢谢明白了,那么这些都很重要:我相信可以使用有效载荷中的值来构造这些值,但我不是日历专家。使用有效载荷中的值来构造这些值是可行的。我担心的是它很脆弱。如果谷歌更改每个日历的URL,我构建的链接将立即被破坏。