久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術文章
文章詳情頁

python - 用 requests 登陸戰網失敗

瀏覽:138日期:2022-09-12 13:38:47

問題描述

想自己寫一個守望先鋒查看生涯數據的腳本不知缺少什么東西,post后200,但是登陸數據顯示未登錄

# coding: utf-8import requestsclass Career(object): def __init__(self):self.login_url = ’https://www.battlenet.com.cn/login/zh/?ref=https://www.battlenet.com.cn/oauth/authorize?client_id%3Dnetease-sc2-esports%26response_type%3Dcode%26scope%3Did%2Bbattletag%2Blogout%2Bprofile%2Bprivate_games%26redirect_uri%3Dhttps%253A%252F%252Faccount.bnet.163.com%252Fbattlenet%252Flogin%253Finner_client_id%253Dow%2526inner_redirect_uri%253Dhttp%25253A%25252F%25252Fow.blizzard.cn%25252Fbattlenet%25252Flogin%25253Fredirect_url%25253Dhttp%2525253A%2525252F%2525252Fow.blizzard.cn%2525252Fcareer%2525252F&app=oauth’self.career_url = ’http://ow.blizzard.cn/career/’self.headsers = { ’Host’: ’www.battlenet.com.cn’, ’Connection’: ’keep-alive’, ’Cache-Control’: ’max-age=0’, ’Origin’: ’https://www.battlenet.com.cn’, ’User-Agent’: ’Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36’, ’Content-Type’: ’application/x-www-form-urlencoded’, ’Accept’: ’text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8’, ’DNT’: ’1’, ’Accept-Encoding’: ’gzip, deflate, br’, ’Accept-Language’: ’zh-CN,en-US;q=0.8,en;q=0.6,zh;q=0.4’}self.form_data = { ’accountName’: ’***’, ’password’: ’***’,} def login(self):session = requests.session()session.headers = self.headsersa = session.post(url=self.login_url, data=self.form_data)html = session.get(url=self.career_url)print(html.text)instance = Career()instance.login()

問題解答

回答1:

python - 用 requests 登陸戰網失敗Form_Data里的信息有不少呢,看看是不是因為這個。

回答2:

這樣呢?

def login(self):session = requests.session()session.headers.update(self.headsers)a = session.post(url=self.login_url, data=self.form_data)html = session.get(url=self.career_url)print(html.text)

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 木兰县| 吉安县| 类乌齐县| 商河县| 招远市| 安徽省| 耒阳市| 民和| 晴隆县| 扎赉特旗| 西盟| 西乡县| 平凉市| 镇雄县| 西青区| 南通市| 响水县| 宁陵县| 抚顺县| 江陵县| 平度市| 林口县| 阿巴嘎旗| 体育| 肃宁县| 南岸区| 龙陵县| 平凉市| 武鸣县| 林口县| 浦东新区| 宁河县| 虞城县| 阿荣旗| 正阳县| 吴江市| 南平市| 乐平市| 满城县| 申扎县| 遵义县|