我无法授权使用 get 请求从对讲机访问用户。这就是我所做的:
import requests
headers = {
'Authorization': 'Bearer {my accsess token}',
'Accept': 'application/json',
'Content-Type': 'application/json',
}
res = requests.get("https://api.intercom.io/users",headers=headers)
我得到的错误:
{"code":"token_unauthorized","message":"无权访问资源"}
请告诉我我做错了什么。提前致谢。