Simple Telegram bot

This is a simple echo bot on Telegram.

View on Github

AWS-telegram-echo-bot

This is a simple echo bot on Telegram. (NodeJS)

Required

  • Node.js v6.5.0 or later
  • Telegram account
  • AWS account

Get Started

  1. Install serverless via npm
$ npm install -g serverless
$ npm install
  1. Create a bot from Telegram, sending this message to @BotFather
$ /newbot
  1. Put the token received into a file called handle.js.
const token = "YOUR_API_TOKEN";
  1. Deploy it!
$ serverless deploy
  1. Configure webhook
curl --request POST --url https://api.telegram.org/bot{token}/setWebhook --header 'content-type: application/json' --data '{"url": "{end-poinnt}"}'

Say hello to your bot 🤖