39 lines
1.3 KiB
JavaScript
39 lines
1.3 KiB
JavaScript
// # Source: https://github.com/Wenmoux/checkbox/blob/master/scripts/ldygo.js
|
|
// # Raw: https://raw.githubusercontent.com/Wenmoux/checkbox/master/scripts/ldygo.js
|
|
// # Repo: Wenmoux/checkbox
|
|
// # Path: scripts/ldygo.js
|
|
// # UploadedAt: 2021-04-16T00:43:18Z
|
|
// # SHA256: 1c2bfc752df7a9d5a50a1d06e382a940c6fea22656b67da275952fe8e61aed6a
|
|
// # Category: APP版/抓包
|
|
// # Evidence: cookie/token/authorization/header
|
|
//
|
|
|
|
//联动云租车每日签到https://m.ldygo.com/app/extension/phoneVoucher.html?inviteCode=JW0hcdmJ
|
|
const axios = require("axios");
|
|
function ldygo() {
|
|
return new Promise(async (resolve) => {
|
|
try {
|
|
let url =
|
|
"https://m.ldygo.com/los/zuche-intf-union.signIn";
|
|
const header = {
|
|
headers: {
|
|
cookie: config.ldygo.cookie,
|
|
},
|
|
};
|
|
const postdata = {"_channel_id":"09","_client_version_no":"2.11.0","timestamp":Math.round(new Date().getTime()/1000).toString()}
|
|
let res = await axios.post(url, postdata,header);
|
|
if (res.data.responseCode == "000000") {
|
|
data = `签到成功! ☁️ + ${res.data.model.points}`;
|
|
} else {
|
|
data = res.data.responseMsg;
|
|
}
|
|
console.log(data);
|
|
} catch (err) {
|
|
console.log(err);
|
|
data="签到接口请求出错"
|
|
}
|
|
resolve("【联动云租车】:" + data);
|
|
});
|
|
}
|
|
module.exports = ldygo;
|