This commit is contained in:
Faker 2022-04-19 20:21:16 +08:00
parent 880108aa91
commit c7f141c82e
3 changed files with 365 additions and 7 deletions

File diff suppressed because one or more lines are too long

View File

@ -597,8 +597,13 @@ function getSign(functionId, body) {
"client":"apple",
"clientVersion":"10.3.0"
}
let Host = ""
let HostArr = ['jdsign.cf', 'signer.nz.lu']
let Host = HostArr[Math.floor((Math.random() * HostArr.length))]
if (process.env.SIGN_URL) {
Host = process.env.SIGN_URL
} else {
Host = HostArr[Math.floor((Math.random() * HostArr.length))]
}
let options = {
url: `https://cdn.nz.lu/ddo`,
body: JSON.stringify(data),

353
jd_fcdyj.js Normal file

File diff suppressed because one or more lines are too long