1 Star 0 Fork 0

yangyongwang/JD_tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
jd_shop.py 1.85 KB
一键复制 编辑 原始数据 按行查看 历史
Lance 提交于 2020-11-06 20:04 . 增加云函数相关说明
import requests
import json
import jdCookie
# 领京豆--进店领豆
# 每天运行一次 2或4京豆 聊胜于无
# cron 5,8 0 * * *
def getTaskIndex(cookies):
headers = {
'User-Agent': 'JD4iPhone/167169 (iPhone; iOS 13.4.1; Scale/3.00)',
'Host': 'api.m.jd.com',
'Content-Type': 'application/x-www-form-urlencoded',
}
params = (
('functionId', 'queryTaskIndex'),
)
data = {
'body': '{}',
"appid": "ld"
}
response = requests.post('https://api.m.jd.com/client.action', headers=headers,
params=params, cookies=cookies, data=data)
result = json.loads(response.text)
if "taskList" not in result["data"] or not result["data"]["taskList"]:
print("...来晚了")
return
taskList = result["data"]["taskList"]
for i in taskList:
taskId = i["taskId"]
taskStatus = i["taskStatus"]
if taskStatus == 3:
print("taskId [", taskId, "] ok")
if taskStatus != 3:
print("执行任务")
takeTask(cookies, taskId)
def takeTask(cookies, taskId):
headers = {
'User-Agent': 'JD4iPhone/167169 (iPhone; iOS 13.4.1; Scale/3.00)',
'Host': 'api.m.jd.com',
'Content-Type': 'application/x-www-form-urlencoded',
}
params = (
('functionId', 'takeTask'),
)
data = {
'body': f"""{{"taskId":"{taskId}"}}""",
"appid": "ld"
}
response = requests.post('https://api.m.jd.com/client.action',
headers=headers, params=params, cookies=cookies, data=data)
print(response.text)
def run():
print("进店领豆 每天运行一次 2或4京豆\n")
for cookies in jdCookie.get_cookies():
print(cookies["pt_pin"])
getTaskIndex(cookies)
print("\n")
if __name__ == "__main__":
run()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yangyongwangone/JD_tools.git
git@gitee.com:yangyongwangone/JD_tools.git
yangyongwangone
JD_tools
JD_tools
master

搜索帮助