使用API​​与辅助域共享App Engine日历

时间:2014-02-28 10:28:27

标签: google-app-engine google-calendar-api google-api-python-client

我有一个与App Engine实例相关联的Google日历。我想与辅助域名共享此日历,例如'myotherdomain.com'。这可能吗?如果是这样的话?

我正在尝试使用Google的calendar API v3的python客户端库 这是我正在尝试的:

rule = {
'scope': {
    'type': 'domain',
    'value': 'myotherdomain.com',
},
'role': 'reader'
}

created_rule = service.acl().insert(calendarId='calendarID', body=rule).execute()

当我尝试这个时,我收到以下错误:

HttpError: <HttpError 400 when requesting ... returned "Invalid scope value.">

我做错了什么或者这不可能?

1 个答案:

答案 0 :(得分:0)

这是不可能的。您无法与辅助域共享日历。