加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
舔狗日记.js 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
Sakaiyuuji 提交于 2023-03-21 16:40 . 修复api接口
import plugin from '../../lib/plugins/plugin.js'
import fetch from 'node-fetch'
export class tianGouDiary extends plugin {
constructor () {
super({
/** 功能名称 */
name: '舔狗日记',
/** 功能描述 */
dsc: '舔狗日记api',
/** https://oicqjs.github.io/oicq/#events */
event: 'message',
/** 优先级,数字越小等级越高 */
priority: 7000,
rule: [
{
/** 命令正则匹配 */
reg: '^舔狗日记$',
/** 执行方法 */
fnc: 'tianGou'
}
]
})
}
/**
* #舔狗日记
* @param e oicq传递的事件参数e
*/
async tianGou (e) {
/** e.msg 用户的命令消息 */
logger.info('[用户命令]', e.msg)
let url1 = 'https://cloud.qqshabi.cn/api/tiangou/api.php'
try {
let ret = await fetch(url1, {
method: 'get', header: {
'Content-Type': 'text/html; charset=UTF-8',
}
}).then((response) => {
response.text().then((data) => {
logger.info(`[接口结果] 舔狗日记:${data}`)
this.reply(`${data}`)
return true;
}).catch((err) => {
return this.reply('舔狗日记接口请求失败')
})
})
}
catch
(error)
{
return false
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化