1
0
mirror of https://github.com/6dylan6/jdpro.git synced 2026-05-01 09:36:41 +08:00

Compare commits

...

3 Commits

Author SHA1 Message Date
dylan bf439aa6d6 1 2024-01-01 18:42:06 +08:00
dylan 9a7b631a04 1 2024-01-01 14:42:05 +08:00
dylan ee4e33ca7f 1 2024-01-01 14:33:46 +08:00
2 changed files with 10 additions and 3 deletions
+3 -3
View File
@@ -2136,15 +2136,15 @@ function dwappinfo() {
}
function dwappexpire() {
let opt = {
url: `https://api.m.jd.com/api?functionId=DATAWALLET_USER_QUERY_EXPIRED_SCORE`,
url: `https://api.m.jd.com/api?functionId=DATAWALLET_USER_QUERY_EXPIRED_SCORE&appid=h5-sep&body=%7B%22expireDayNum%22%3A7%7D&client=m&clientVersion=6.0.0`,
headers: {
'Origin':'https://prodev.m.jd.com',
'User-Agent': $.UA,
'Cookie': cookie
}
}
return new Promise(async (resolve) => {
$.get(opt, async (err, resp, data) => {
$.post(opt, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
+7
View File
File diff suppressed because one or more lines are too long