如何从发布请求中获取正确的网址(python)?

时间:2019-07-12 12:20:38

标签: python post get request

我想用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,自然登录失败。

0 个答案:

没有答案