代码拉取完成,页面将自动刷新
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
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。