自动登陆抽屉并点赞

### 1、首先登陆任何页面,获取cookie

 
i1 = requests.get(url= "http://dig.chouti.com/help/service")
 
### 2、用户登陆,携带上一次的cookie,后台对cookie中的 gpsd 进行授权
i2 = requests.post(
    url= "http://dig.chouti.com/login",
    data= {
        'phone': "86手机号",
        'password': "密码",
        'oneMonth': ""
    },
    cookies = i1.cookies.get_dict()
)
 
### 3、点赞(只需要携带已经被授权的gpsd即可)
gpsd = i1.cookies.get_dict()['gpsd']
i3 = requests.post(
    url="http://dig.chouti.com/link/vote?linksId=8589523",
    cookies={'gpsd': gpsd}
)
print(i3.text)

 

posted on 2018-11-02 10:36  zhangmingda  阅读(131)  评论(0编辑  收藏  举报

导航