-
Notifications
You must be signed in to change notification settings - Fork 51
/
jd_bean_box.ts
91 lines (84 loc) · 3.06 KB
/
jd_bean_box.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/**
* 领京豆-任务
* 助力:内部 -> HW
* cron: 1 0,9,12,18 * * *
*/
import axios from 'axios'
import USER_AGENT, {get, randomNumString, getCookie, wait} from './TS_USER_AGENTS'
let cookie: string = '', res: any = '', UserName: string, index: number, uuid: string
!(async () => {
let cookiesArr: string[] = await getCookie()
for (let i = 0; i < cookiesArr.length; i++) {
cookie = cookiesArr[i]
UserName = decodeURIComponent(cookie.match(/pt_pin=([^;]*)/)![1])
index = i + 1
console.log(`\n开始【京东账号${index}】${UserName}\n`)
let headers: object = {
'Host': 'api.m.jd.com',
'Origin': 'https://h5.m.jd.com',
'User-Agent': USER_AGENT,
'Referer': 'https://h5.m.jd.com/',
'Cookie': cookie
}
res = await get('https://api.m.jd.com/client.action?functionId=initForTurntableFarm&body=%7B%22version%22%3A4%2C%22channel%22%3A1%7D&appid=wh5', headers)
let times: number = res.remainLotteryTimes
console.log('剩余抽奖机会:', times)
for (let j = 0; j < times; j++) {
console.log('开始抽奖...')
res = await get('https://api.m.jd.com/client.action?functionId=lotteryForTurntableFarm&body=%7B%22type%22%3A1%2C%22version%22%3A4%2C%22channel%22%3A1%7D&appid=wh5', headers)
if (res.code === '0') {
if (res.type === 'thanks') {
console.log('抽奖成功,获得:狗屁')
} else {
console.log('抽奖成功,获得:', res.type)
}
} else {
console.log('抽奖失败', res)
}
await wait(5000)
}
uuid = randomNumString(40)
for (let j = 0; j < 2; j++) {
console.log(`Round:${j + 1}`)
res = await api('beanTaskList', {"viewChannel": "AppHome"})
try {
for (let t of res.data.taskInfos) {
if (t.status === 1) {
console.log(t.taskName)
res = await api('beanDoTask', {
"actionType": t.taskType === 3 ? 0 : 1,
"taskToken": t.subTaskVOS[0].taskToken
})
res.data?.bizMsg ? console.log(res.data.bizMsg) : console.log(res)
await wait(t.waitDuration * 1000 || 2000)
if (t.taskType !== 3) {
res = await api('beanDoTask', {
"actionType": 0,
"taskToken": t.subTaskVOS[0].taskToken
})
if (res.data?.bizMsg)
console.log(res.data.bizMsg)
}
await wait(1000)
}
}
} catch (e) {
console.log('Error!', e)
}
await wait(2000)
}
}
})()
async function api(fn: string, body: object) {
let {data}: any = await axios.post(`https://api.m.jd.com/client.action?functionId=${fn}`,
`body=${encodeURIComponent(JSON.stringify(body))}&appid=ld&client=apple&clientVersion=10.0.8&uuid=${uuid}&openudid=${uuid}`, {
headers: {
'Host': 'api.m.jd.com',
'content-type': 'application/x-www-form-urlencoded',
'referer': '',
'user-agent': 'JD4iPhone/167863%20(iPhone;%20iOS;%20Scale/3.00)',
'Cookie': cookie
}
})
return data
}