【发布时间】:2021-06-05 12:06:09
【问题描述】:
我正在尝试使用 requests 库通过 Python 脚本登录网站,但我不断收到 405 错误,我不知道为什么会收到它。
import requests
payload = {
'guid': 'xxxxx',
'password': "xxxx"
}
head = {'Host': 'www.blockchain.com',
'Connection': 'keep-alive',
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',
'Upgrade-Insecure-Requests': '1',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',
'Accept-Encoding': 'gzip, deflate, br',
'Accept-Language': 'en-US,en;q=0.9'
}
#This URL will be the URL that your login form points to with the "action" tag.
url_address = 'https://login.blockchain.com/#/login'
with requests.Session() as session:
post = session.post(url_address, data=payload, headers = head, allow_redirects=True)
print(f'{post}')
我检查了表单,输入字段的名称似乎也正确。
我在代码中做错了什么?
【问题讨论】:
标签: python python-3.x python-requests http-status-code-405