1 Star 0 Fork 0

TanRuikai/Absinthe

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
jdJxncTokens.js 1.25 KB
一键复制 编辑 原始数据 按行查看 历史
/*
京喜农场 Tokens
此文件为Node.js专用。其他用户请忽略
支持京东N个账号
*/
// 每个账号 token 是一个 json,示例如下
// {"farm_jstoken":"749a90f871adsfads8ffda7bf3b1576760","timestamp":"1610165423873","phoneid":"42c7e3dadfadsfdsaac-18f0e4f4a0cf"}
let JxncTokens = [
'',//账号一的京喜农场token
'',//账号二的京喜农场token
]
// 判断github action里面是否有京喜农场 token
if (process.env.JXNCTOKENS) {
if (process.env.JXNCTOKENS.indexOf('&') > -1) {
console.log(`您的京喜农场 token 选择的是用&隔开\n`)
JxncTokens = process.env.JXNCTOKENS.split('&');
} else if (process.env.JXNCTOKENS.indexOf('\n') > -1) {
console.log(`您的京喜农场 token 选择的是用换行隔开\n`)
JxncTokens = process.env.JXNCTOKENS.split('\n');
} else {
JxncTokens = process.env.JXNCTOKENS.split();
}
} else if (process.env.JD_COOKIE) {
console.log(`由于您secret里面未提供 tokens,当种植 APP 种子时,将不能正常进行任务,请提供 token 或 种植非 APP 种子!`)
}
JxncTokens = [...new Set(JxncTokens.filter(item => !!item))]
for (let i = 0; i < JxncTokens.length; i++) {
const index = (i + 1 === 1) ? '' : (i + 1);
exports['JXNCTOKEN' + index] = JxncTokens[i];
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/tanruikai/Absinthe.git
git@gitee.com:tanruikai/Absinthe.git
tanruikai
Absinthe
Absinthe
main

搜索帮助