1 Star 0 Fork 0

meepobrother/sker-v2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
ims 提交于 2024-05-04 00:51 . fix
const appid = `wxaadbab9d13edff20`
const account = `420123485`
const password = `mgkj8888`
const channel = 1
const authType = 2
const url = `http://202.189.5.105:7899/api/auth?account=${account}&pwd=${password}&appId=${appid}&channel=${channel}&authType=${authType}&url=https://open.weixin.qq.com/connect/confirm?uuid=011ze7Gn25MqFa1O`
const axios = require('axios')
let i = 0;
const wait = (n)=>{
return new Promise((resolve, reject)=>{
setTimeout(resolve, 500)
})
}
const get = async ()=>{
const startTime = new Date().getTime()
return await axios.post(url).then(res=>res.data).then(async res=>{
if(res.code === 20001 && !res.Flag && res.message === '授权失败' ){
i+=1;
await wait(1000)
console.log(`第${i}次请求失败, 花费时间${new Date().getTime() - startTime}ms`)
await get()
}
console.log(res)
}).catch(async e=>{
await wait(1000)
console.log(`第${i}次请求失败, 花费时间${new Date().getTime() - startTime}ms`)
await get()
})
}
get();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/meepo_vip/sker-v2.git
git@gitee.com:meepo_vip/sker-v2.git
meepo_vip
sker-v2
sker-v2
master

搜索帮助