Skip to content

Instantly share code, notes, and snippets.

@fy0
Last active December 30, 2019 01:24
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save fy0/f13b0266f895772915b26300e6c53f61 to your computer and use it in GitHub Desktop.
Save fy0/f13b0266f895772915b26300e6c53f61 to your computer and use it in GitHub Desktop.
# coding: utf-8
# 更新于2017/10/02,python3测试通过
import re
import requests
# 领取 X 铜币
# 每日登录奖励已领取
base_headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.57 Safari/537.36 OPR/40.0.2308.15 (Edition beta)', 'Referer': 'https://www.v2ex.com/signin', 'Origin': 'https://www.v2ex.com'}
base_headers['cookie'] = <你的cookies>
session = requests.Session()
session.headers = base_headers
resp = session.get('https://www.v2ex.com/mission/daily')
if u'每日登录奖励已领取' in resp.text:
print('Already got it.')
else:
resp = session.get('https://www.v2ex.com' + re.search(r'/mission/daily/redeem\?once=\d+', resp.text).group())
print(resp.ok)
@Mojammelk
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment