我想编写python程序测试post方法。从下图中,我知道
我的帐户是
accountName:<acccount_name>
password:<password>
我想用帐户名和密码打开网页,所以我写了我的代码
import requests
import webbrowser
session = requests.Session()
data={'accountName':'<acccount_name>','password':'<password>'}
r=session.post('https://www.battlenet.com.cn/login/zh/?ref=https://www.battlenet.com.cn/wow/zh/vault/character/auction/index&app=com-wow',data=data)
print(r.cookies.get_dict())
r=session.get('https://www.battlenet.com.cn/login/zh/?ref=https://www.battlenet.com.cn/wow/zh/vault/character/auction/index&app=com-wow')
print(r.text)
但是从结果来看,我无法获得记录的网页。我的错误在哪里?