POST https://maxcvservices.dnb.com/rest/Authentication
x-dnb-user: MyUsername
x-dnb-pwd: MyPassword
是D& B API的文档,因此我尝试使用python请求模块使用以下代码行发送POST请求:
r = requests.post('https://maxcvservices.dnb.com/rest/Authentication',params={'x-dnb-user':userid,'x-dnb-pwd':pass})
我得到的回复是Response [500]
,回复内容为:error processing request\r\n
我的问题是,在传递帖子请求和参数时我是否做错了,还是我的用户名和密码无效?
我觉得问题在于我传递POST请求的方式,因为API响应错误的用户ID错误401传递。
{'connection': 'Keep-Alive',
'content-encoding': 'gzip',
'content-length': '46',
'content-type': 'text/plain',
'date': 'Sat, 26 Oct 2013 17:43:22 GMT',
'server': '',
'vary': 'Accept-Encoding',
'x-correlationid': 'Id-d4c07ad3526bff3a03fb742e 0'}
我使用时的响应标题:
r = requests.post('https://maxcvservices.dnb.com/rest/Authentication', headers={'x-dnb-user': 'userid', 'x-dnb-pwd': 'password'})
随机用户ID和密码。
但根据API我应该收到<Response [401]>
。
我收到了<Response [500]>
。
答案 0 :(得分:5)
这些是HTTP标头;引用API documentation:
安全访问D&amp; B直接服务是通过使用身份验证令牌来管理的,身份验证令牌可以通过向身份验证服务URL发送HTTP POST请求,在HTTP标头中传递有效的用户名和密码来获得/强>
按原样添加:
r = requests.post(
'https://maxcvservices.dnb.com/rest/Authentication',
headers={'x-dnb-user': userid, 'x-dnb-pwd': password})
这对我有用,虽然我收到401回复(因为我没有任何有效的凭证):
>>> import requests
>>> requests.__version__
'2.0.0'
>>> r = requests.post('https://maxcvservices.dnb.com/rest/Authentication',
... headers={'x-dnb-user': 'userid', 'x-dnb-pwd': 'password'})
>>> r
<Response [401]>
>>> r.headers['authorization']
'INVALID CREDENTIALS'
完全按照文件记录。