我想使用我的用户在 Calendly 中的请求(如文档)进行 API 调用,但我做不到。我不知道我的代码中是否需要其他内容,谢谢。
import requests, json
api_key = 'aaaaaaaaa'
header = {
'Authorization' : api_key
}
response = requests.get('https://api.calendly.com/users/me/', headers= header)
print(response)
print(response.json())
我收到 401 响应:
<Response [401]> {'title': 'Unauthenticated', 'message': 'The access token is invalid'}