(标题中有很多请求,我知道)
有了Fiddler我得到了一个请求。它完全符合我的要求。当我尝试在python中重现它时,它不起作用。这是Fiddler的要求:
POST https://ichthus.zportal.nl/api/v3/oauth/ HTTP/1.1
Host: ichthus.zportal.nl
Content-Type: application/x-www-form-urlencoded
username=138777&password=XXXXX&client_id=OAuthPage&redirect_uri=%2Fmain%2F&scope=&state=4E252A&response_type=code&tenant=ichthus
这是我尝试的Python请求代码:
import requests
endpoint = "https://ichthus.zportal.nl/api/v3/oauth/"
authData = {
'username': '138777',
'password': 'XXXXX',
'client_id': 'OAuthPage',
'redirect_uri': '/main/',
'scope': '',
'state': '4E252A',
'response_type': 'code',
'tenant': 'ichthus',
}
header = {
'Host': 'ichthus.zportal.nl',
'Content-Type': 'application/x-www-form-urlencoded',
}
response = requests.post(endpoint, data=authData, headers=header)
print response.headers
print response.status_code
使用Request to Code我设法将其发送到python URLlib2请求。但我之前从未使用过URLlib,我想知道它是否可以转换为Python请求请求。这是Python URLlib2代码:
def make_requests():
response = [None]
responseText = None
if(request_ichthus_zportal_nl(response)):
responseText = read_response(response[0])
response[0].close()
def request_ichthus_zportal_nl(response):
response[0] = None
try:
req = urllib2.Request("https://ichthus.zportal.nl/api/v3/oauth/")
req.add_header("Content-Type", "application/x-www-form-urlencoded")
body = "username=138777&password=XXXX&client_id=OAuthPage&redirect_uri=%2Fmain%2F&scope=&state=4E252A&response_type=code&tenant=ichthus"
response[0] = urllib2.urlopen(req, body)
except urllib2.URLError, e:
if not hasattr(e, "code"):
return False
response[0] = e
except:
return False
return True
答案 0 :(得分:2)
请求是一个非常受欢迎的外部库,但我不建议依赖它。
我确实注意到您发送了以下数据"数据"根据您的要求
authData = {
'username': '138777',
'password': 'XXXXX',
'client_id': 'OAuthPage',
'redirect_uri': '/main/',
'scope': '',
'state': '4E252A',
'response_type': 'code',
'tenant': 'ichthus',
}
但是您指定数据类型为'Content-Type': 'application/x-www-form-urlencoded'
并且您从不对数据进行编码。这也可能是你的罪魁祸首。
另外。请求只是urllib2的一个包装器,可以自动执行大量工作。
尝试使用urllib / 2
Urllib2.urlopen (url, data)
使用
对数据进行网址编码Urllib.urlencode ()
有关更多详细信息,请参阅python文档。