我正在请求使用 Hubspot API 通过电子邮件搜索联系人
我不断收到未经授权的 HTTP 错误 401。
请求是从 Django 中的视图发送的。请参阅下面的代码。
当然,email@domain.com 和 xxxxxx 被正确的值替换,只是为了澄清,我确定我使用的是 API 密钥而不是 access_token。
xurl = "https://api.hubapi.com/contacts/v1/contact/email/email@domain.com/profile?hapikey=xxxxxx"
req = urllib2.Request(xurl)
response = urllib2.urlopen(req).read() Error occurs at this line, says Django
statistics = json.loads(response)
print(statistics["contacts"])
在此先感谢您的帮助。