We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
def getUserEnergyAward(mobile: str): """ 领取耐力 """ cookies = { 'MT-Device-ID-Wap': headers['MT-Device-ID'], 'MT-Token-Wap': headers['MT-Token'], 'YX_SUPPORT_WEBP': '1', } response = requests.post('https://h5.moutai519.com.cn/game/isolationPage/getUserEnergyAward', cookies=cookies, headers=headers, json={}) # response.json().get('message') if '无法领取奖励' in response.text else "领取奖励成功" logging.info( f'领取耐力 : mobile:{mobile} : response code : {response.status_code}, response body : {response.text}')
======================
这个函数是不是只领取了耐力?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
领取耐力和小茅运
def getUserEnergyAward(mobile: str):
"""
领取耐力
"""
cookies = {
'MT-Device-ID-Wap': headers['MT-Device-ID'],
'MT-Token-Wap': headers['MT-Token'],
'YX_SUPPORT_WEBP': '1',
}
response = requests.post('https://h5.moutai519.com.cn/game/isolationPage/getUserEnergyAward', cookies=cookies,
headers=headers, json={})
# response.json().get('message') if '无法领取奖励' in response.text else "领取奖励成功"
logging.info(
f'领取耐力 : mobile:{mobile} : response code : {response.status_code}, response body : {response.text}')
======================
这个函数是不是只领取了耐力?
The text was updated successfully, but these errors were encountered: