Api class
You can use an Api class to send a message to another users and more
Why do you need an Api class?
If you want to send a message to another user, call api method for a different bot, or get data from the api reference, you can use Api class methods
Get Api class in controller
To get Api class in controller, use @GetApi
property decorator, and Api class as type
app.controller.ts
.send Api method take arguments:
Argument
Description
Required
1
User ID or channel ID (string or number)
Required
2
Message you want to send (you can use MessageSend class too)
Required
3
Keyboard
Optional
4
Optional
Api methods
You can use any method from the Answer class in the Api class
Get Api for different token
If you want to call some api method for different bot, use bot.to
method
main.ts
Last updated