尝试使用 Python 客户端将 ACL 插入日历时出现错误 404 - 如果我重试则有效

Error 404 when trying to insert an ACL to a calendar with Python client - works if I retry

使用 Google 教育套件。

我有一个应用想要:

一切都是 运行 通过服务帐户。

日历创建得很好,但插入 ACL 会引发 404 错误(出于隐私考虑而编辑):

<HttpError 404 when requesting https://www.googleapis.com/calendar/v3/calendars/MY_DOMAIN_long_string%40group.calendar.google.com/acl?alt=json returned "Not Found">

尝试插入 ACL 的函数:

    def _create_calendar_acl(calendar_id, user, role='reader'):
        credentials = service_account.Credentials.from_service_account_file(
            CalendarAPI.module_path)
        scoped_credentials = credentials.with_scopes(
            ['https://www.googleapis.com/auth/calendar'])

        delegated_credentials = scoped_credentials.with_subject(
            'an_admin_email')

        calendar_api = googleapiclient.discovery.build('calendar',
                                                       'v3',
                                                       credentials=delegated_credentials)
        body = {'role': role,
                'scope': {'type': 'user',
                          'value': user}}

        answer = calendar_api.acl().insert(calendarId=calendar_id,
                                           body=body,
                                           ).execute()
        return answer

最有趣的是,如果我重试几次,它终于成功了。因此,这就是我的代码所做的:

def create_student_schedule_calendar(email):
    MAX_RETRIES = 5
    # Get student information

    # Create calendar
    answer = Calendar.create_calendar('a.calendar.owner@mydomain',
                                      f'Student Name - schedule',
                                      timezone='Europe/Madrid')

    calendar_id = answer['id']

    counter = 0
    while counter < MAX_RETRIES:
        try:
            print('Try ' + str(counter + 1))
            _create_calendar_acl(calendar_id=calendar_id, user=email)  # This is where the 404 is thrown
            break
        except HttpError:  # this is where the 404 is caught
            counter += 1
            print('Wait ' + str(counter ** 2))
            time.sleep(counter ** 2)
            continue

    if counter == MAX_RETRIES:
        raise Exception(f'Exceeded retries to create ACL for {calendar_id}')

无论如何,需要尝试四次(14 到 30 秒之间)才能成功 - 有时它会过期。

是否有可能最近创建的日历不能立即供 API 使用它?

传播通常是基于云的服务的一个问题。大规模在线服务分布在机器网络上,这些机器本身具有一定程度的延迟 - 信息在网络上传播并在各处更新需要离散的、非零的时间量。

在第一次调用后所有操作都在运行,但没有导致 404,证明了这个过程。

缓解措施:

我建议您是否在同一个函数调用中创建和编辑,暂时实现某种 wait/sleep 以减轻获得 404 的情况。这可以在 python 中使用时间库完成:

import time
# calendar creation code here
time.sleep(2)
# calendar edit code here