Day01,python POST请求自动登录GitHub

import requests
import re
login_url='https://github.com/login'
login_header={
    'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36'
}
login_res=requests.get(url=login_url,headers=login_header)
authenticity_token=re.findall(
    '<input type="hidden" name="authenticity_token" value="(.*?)" />',
    login_res.text,
    re.S
)[0]
print(authenticity_token)

login_cookies=login_res.cookies.get_dict()

session_url='https://github.com/session'
session_headers={
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36'
}
form_data={
    "commit":"sign in",
    "utf8":"",
    "authenticity_token":authenticity_token,
    "login":"1847702753@qq.com",
    "password":"199810100333zj3",
    "webauthn-support":"supported"
}
session_res=requests.post(url=session_url,headers=session_headers,cookies=login_cookies,data=form_data)
with open('github.html','w',encoding='utf-8')as f:
    f.write(session_res.text)

 

posted on 2019-07-01 17:24  winter_cool  阅读(190)  评论(0编辑  收藏  举报