战网中的帖子方法

时间:2018-04-04 08:39:33

标签: python python-requests web-crawler

我想编写python程序测试post方法。从下图中,我知道

  

URL = https://www.battlenet.com.cn/login/zh/?ref=https://www.battlenet.com.cn/wow/zh/vault/character/auction/index&app=com-wow

我的帐户是

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)

但是从结果来看,我无法获得记录的网页。我的错误在哪里?

enter image description here

0 个答案:

没有答案