botrix npm
1.0.0
这是 Botrix 机器人列表 API 的文档。
npm -i bortix-npm
(截至 2020 年 11 月 30 日)botrix API 的基本 URL 为:
https://botrix.cc/api/v1/
这可以进一步跟进:
https://botrix.cc/api/v1/bot/:botID
https://botrix.cc/api/v1/server/:serverID
getUser();
要使用此功能,可以通过两种方式使用:
在 JS 应用程序中:
const Botrix = require ( 'botrix-npm' ) ;
user ( ) ;
async function user ( ) {
const user = await Botrix . getUser ( '534232491360387082' ) ;
return console . log ( user ) ;
}
或者,如果您想将该功能实现到 Discord 机器人中,您可以执行以下操作:
const Botrix = require ( 'botrix-npm' ) ;
module . exports = {
name : 'getuser' ,
async run ( client , message , args ) {
const user = message . mentions . users . first ( ) ;
const userData = await Botrix . getUser ( user ) ;
console . log ( userData ) ;
}
}
getBot();
要使用此功能,可以通过两种方式使用:
在 JS 应用程序中:
const Botrix = require ( 'botrix-npm' ) ;
bot ( ) ;
async function bot ( ) {
const bot = await Botrix . getBot ( '534232491360387082' ) ;
return console . log ( bot ) ;
}
或者,如果您想将该功能实现到 Discord 机器人中,您可以执行以下操作:
const Botrix = require ( 'botrix-npm' ) ;
module . exports = {
name : 'getuser' ,
async run ( client , message , args ) {
const bot = message . mentions . users . first ( ) ;
const botData = await Botrix . getBot ( bot ) ;
console . log ( botData ) ;
}
}
getQueue();
要使用此功能,可以通过两种方式使用:
在 JS 应用程序中:
const Botrix = require ( 'botrix-npm' ) ;
queue ( ) ;
async function user ( ) {
const user = await Botrix . getQueue ( ) ;
return console . log ( user ) ;
}
或者如果您想将botrix-npm
实施到 Discord 机器人中,您可以执行以下操作:
const Botrix = require ( 'botrix-npm' ) ;
module . exports = {
name : 'getuser' ,
async run ( client , message , args ) {
const queueData = await Botrix . getQueue ( ) ;
console . log ( queueData ) ;
}
}
Botrix 网站:https://botrix.cc/ NPM 包:https://npmjs.org/package/botrix-npm/