|
|
@ -1,32 +1,34 @@
|
|
|
|
Telegram API sending message without rate limit.
|
|
|
|
# Telegram API sending message without rate limit.
|
|
|
|
|
|
|
|
|
|
|
|
Instructions
|
|
|
|
## Table of contents
|
|
|
|
|
|
|
|
- [Instructions](#instructions)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Instructions
|
|
|
|
There are 2 endpoints handled by this microservice:
|
|
|
|
There are 2 endpoints handled by this microservice:
|
|
|
|
|
|
|
|
|
|
|
|
1 -> GET request to {BASE_URL}/bot${botToken}/sendMessage
|
|
|
|
1 -> GET request to [{BASE_URL}/bot${botToken}/sendMessage]({BASE_URL}/bot${botToken}/sendMessage)
|
|
|
|
|
|
|
|
|
|
|
|
– url that you used for sending a message to chat through telegram bot (as GET request) usually looks like this:
|
|
|
|
– url that you used for sending a message to chat through telegram bot (as GET request) usually looks like this:
|
|
|
|
|
|
|
|
|
|
|
|
https://api.telegram.org/bot<Bot_token>/sendMessage?chat_id=<chat_id>&text=<text>
|
|
|
|
[https://api.telegram.org/bot<Bot_token>/sendMessage?chat_id=<chat_id>&text=<text>](https://api.telegram.org/bot<Bot_token>/sendMessage?chat_id=<chat_id>&text=<text>)
|
|
|
|
|
|
|
|
|
|
|
|
As you can see, you only have to replace https://api.telegram.org/ part with {BASE_URL}, eventually looking like this:
|
|
|
|
As you can see, you only have to replace [https://api.telegram.org/](https://api.telegram.org/) part with {BASE_URL}, eventually looking like this:
|
|
|
|
|
|
|
|
|
|
|
|
{BASE_URL}/bot<Bot_token>/sendMessage?chat_id=<chat_id>&text=<text>
|
|
|
|
[{BASE_URL}/bot<Bot_token>/sendMessage?chat_id=<chat_id>&text=<text>]({BASE_URL}/bot<Bot_token>/sendMessage?chat_id=<chat_id>&text=<text>)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 -> POST request to {BASE_URL}/sendMessage
|
|
|
|
2 -> POST request to {BASE_URL}/sendMessage
|
|
|
|
|
|
|
|
|
|
|
|
– url that you used for sending a message to chat through telegram bot (as POST request) usually looks like this:
|
|
|
|
– url that you used for sending a message to chat through telegram bot (as POST request) usually looks like this:
|
|
|
|
|
|
|
|
|
|
|
|
https://api.telegram.org/bot<Bot_Token>/sendMessage
|
|
|
|
[https://api.telegram.org/bot<Bot_Token>/sendMessage](https://api.telegram.org/bot<Bot_Token>/sendMessage)
|
|
|
|
|
|
|
|
|
|
|
|
You are expected to do the same thing you did with GET request: replace https://api.telegram.org/ part with {BASE_URL}, eventually looking like this:
|
|
|
|
You are expected to do the same thing you did with GET request: replace [https://api.telegram.org/](https://api.telegram.org/) part with {BASE_URL}, eventually looking like this:
|
|
|
|
|
|
|
|
|
|
|
|
{BASE_URL}/bot<Bot_token>/sendMessage with request body:
|
|
|
|
[{BASE_URL}/bot<Bot_token>/sendMessage]({BASE_URL}/bot<Bot_token>/sendMessage) with request body:
|
|
|
|
{
|
|
|
|
```{
|
|
|
|
"chat_id": <chat_id>,
|
|
|
|
"chat_id": <chat_id>,
|
|
|
|
"text": <text>
|
|
|
|
"text": <text>
|
|
|
|
}
|
|
|
|
}```
|
|
|
|
|
|
|
|
|
|
|
|
Requires redis and preffered configuration is host being at 127.0.0.1 and port being at 6379
|
|
|
|
p.s. Requires redis and preffered configuration for redis is host being at 127.0.0.1 and port being at 6379
|