1 Star 0 Fork 4

lfy0425/JDHelloWorld-jd_scripts

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
jd_api_test.ts 1.76 KB
一键复制 编辑 原始数据 按行查看 历史
JDHelloWorld 提交于 2021-07-16 16:21 . activityId
/**
* 网络测试
* 1、测试是否能访问助力池
* 2、助力获取失败、没有统计到运行次数,很大可能因为访问api失败
* 3、如果出现失败,自行更换设备dns
*/
import axios from 'axios';
const notify = require('./sendNotify')
!(async () => {
console.log(`==================脚本执行- 北京时间(UTC+8):${new Date(new Date().getTime() + new Date().getTimezoneOffset() * 60 * 1000 + 8 * 60 * 60 * 1000).toLocaleString()}=====================\n`)
try {
let cars: string[] = ['bean', 'farm', 'health', 'jxfactory', 'pet'];
let db: string = cars[getRandomNumberByRange(0, 5)]
let num: number = getRandomNumberByRange(5, 20)
console.log(`本次随机选择${db}获取${num}个随机助力码`)
let {data} = await axios.get(`https://api.sharecode.ga/api/${db}/${num}`, {timeout: 3000})
console.log(JSON.stringify(data, null, ' '))
if (data.code === 200) {
if (data.data.length === num) {
console.log(`成功获取${num}个`)
}
}
} catch (e) {
console.log('测试失败,请重试,或更换设备dns。')
await notify.sendNotify("API访问失败!\n请检查网络或更换DNS","手动测试:\nhttps://api.sharecode.ga/api/bean/10","","你好,世界!")
}
try{
let {data} = await axios.get(`https://api.sharecode.ga/api/version`, {timeout: 3000})
console.log(`当前版本:${data}`)
}catch (e) {
console.log('测试失败,请重试,或更换设备dns。')
await notify.sendNotify("API访问失败!\n请检查网络或更换DNS","手动测试:\nhttps://api.sharecode.ga/api/version","","你好,世界!")
}
})()
function getRandomNumberByRange(start: number, end: number): number {
return Math.floor(Math.random() * (end - start) + start)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lfy0425/jdhello-world-jd_scripts.git
git@gitee.com:lfy0425/jdhello-world-jd_scripts.git
lfy0425
jdhello-world-jd_scripts
JDHelloWorld-jd_scripts
main

搜索帮助