我已经成功为各种GSuite用户创建了日历事件,然后我想设置一个监视事件。我能够成功做到这一点:
SCOPES = ['https://www.googleapis.com/auth/calendar']
SERVICE_ACCOUNT_FILE = BASE_DIR + 'path_to_json'
credentials = service_account.Credentials.from_service_account_file(
SERVICE_ACCOUNT_FILE, scopes=SCOPES)
delegated_user = credentials.with_subject(user)
delegated_service = googleapiclient.discovery.build('calendar', 'v3', credentials=delegated_user)
event = {
'summary': '%s at %s' % (event_name, event_location),
'description': 'description',
'location': event_address,
'extendedProperties': {
"private": {
'briefType': event_name,
}
},
'start': {
'dateTime': event_start_time.astimezone().isoformat(),
},
'end': {
'dateTime': event_end_time.astimezone().isoformat(),
}
}
event = delegated_service.events().insert(calendarId='primary', body=event).execute()
watch_body = {
'id': event['id'],
'type': 'web_hook',
'address': 'https://example.com/googleapi'
}
watch = delegated_service.events().watch(calendarId='primary', body=watch_body).execute()
我不太确定如何接收推送通知。我已经注册/添加了我的域(按https://developers.google.com/calendar/v3/push),当我在Google日历中更改事件时,我收到了API推送通知,但收到403错误:
Dec 11 20:58:38 ip-xxx gunicorn[3104]: - - [11/Dec/2019:20:58:38 +0000] "POST /googleapi HTTP/1.0" 403 1889 "-" "APIs-Google; (+https://developers.google.com/webmasters/APIs-Google.html)"
我如何在处理view
的/googleapi
中进行身份验证,以能够实际接收来自Google的API通知?
我尝试了以下操作,只是为了调试从Google接收到的内容,但是除了403错误之外,我什么也没得到:
def GoogleAPIWatchView(request):
SCOPES = ['https://www.googleapis.com/auth/calendar']
SERVICE_ACCOUNT_FILE = BASE_DIR + 'path_to_json'
credentials = service_account.Credentials.from_service_account_file(
SERVICE_ACCOUNT_FILE, scopes=SCOPES)
regex = re.compile('^HTTP_')
headers = dict((regex.sub('', header), value) for (header, value)
in request.META.items() if header.startswith('HTTP_'))
print(headers)
print(request)
return JsonResponse('success', status=200, safe=False)
您的应用程序正在尝试使用服务帐户访问用户数据,这是正确的,并且这样做是正确的,但是由于您没有获得执行此权限的权限,因此您将收到403服务器响应。
为了在尝试使用服务帐户时能够使用服务帐户运行您的应用程序,必须授予以下权限:
域范围内的授权:
如果服务帐户没有对域的委派权限,则使用服务帐户的应用程序将无法代表域的用户访问数据。
要启用它,请转到here:
您的服务帐户现在具有域范围的委派。
接下来,您需要设置服务帐户的范围。
服务帐户范围:
G Suite域的管理员必须执行以下步骤:
关于域范围内的授权和服务帐户创建的Google文档:
https://developers.google.com/identity/protocols/OAuth2ServiceAccount
似乎是这样的[[[HTTP 403
api正在拒绝未经授权的请求