我想用Python发出POST请求。 我从Google Chrome浏览器读取了所有参数。 所以现在的问题是我得到了错误的网址
login_data = {
'usrname': 'tester',
'pswr': 'examplepw'
}
with requests.Session() as f:
h = f.post('http://example.com', data=login_data)
print(h.url)
我得到:http://example.com,自然登录失败。