Python从OPS API获取access_token

时间:2018-07-27 14:50:53

标签: python api python-requests authorization access-token

我一直在尝试使用python中的请求包连接到EPO OPS API,但未成功。 dev guide(第34页)指出,步骤1是将Consumer密钥和Consumer机密转换为Base64Encode(Consumer key:Consumer secret)。第2步是使用基本身份验证请求访问令牌,并通过加密的HTTPS连接向其消费者密钥和消费者秘密提供base64Encoding,如下所示:

enter image description here

下面是我使用的代码,但出现400错误状态。

import requests
import base64
url_token = "https://ops.epo.org/3.2/auth/accesstoken"
key = "Basic %s" %base64.b64encode("myconsumerkey:mysecretkey")
headers = ({"Authorization": key, 'Content-Type': 'application/x-www-form-urlencoded'})
resp = requests.post(url_token, headers=headers)
print(resp.status_code)

有人知道如何使access_token请求正常工作吗?

我希望脚本提取此链接的XML内容:

http://ops.epo.org/3.2/rest-services/published-data/search?q=automation

谢谢!

1 个答案:

答案 0 :(得分:0)

我得到了这个解决方案,我忘了添加grant_type参数。解决方案如下:

import requests
import base64
import json

token_url='https://ops.epo.org/3.2/auth/accesstoken'
key = 'Basic %s' % base64.b64encode(b'myconsumerkeyhere:mysecretkeyhere').decode('ascii')
data = {'grant_type': 'client_credentials'}
headers = {'Authorization': key, 'Content-Type': 'application/x-www-form-urlencoded'}

r = requests.post(token_url, data=data, headers=headers)

rs= r.content.decode() 
response = json.loads(rs)

token = response['access_token']

print(token)