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();
この機能を使用するには、次の 2 つの方法があります。
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();
この機能を使用するには、次の 2 つの方法があります。
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();
この機能を使用するには、次の 2 つの方法があります。
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 Web サイト: https://botrix.cc/ NPM パッケージ: https://npmjs.org/package/botrix-npm/