A telegram bot that sends puppy images to a telegram user and channel.
First we can ask for the bot for help:
Then we can say puppiesto get a random image from the puppies subreddit.
Also we can request images from specific a subReddit (use this for good, not evil)...
You can request to bot to get out of the project with the /quitcommand:
Edit .ENV file and replace BOT_TOKEN=INSERT_TOKEN with the new token
- Make the request in the browser https://api.telegram.org/bot<INSERT_TOKEN>/getUpdates and replace the INSERT_TOKEN with the bot token
The received json will be, get the chat id:
{
"ok": true,
"result": [
{
"message": {
"message_id": 144,
"chat": {
"id": -121432131321, // <------- COPY THIS ID
"title": "GROUP NAME",
"type": "group",
"all_members_are_administrators": true
}
}
}
]
}
cp .example.env .env
vim .env
npm install
make dev
# Open telegram chatPlease see documentation in the page install Page..




