/lambtel-echo-bot

Practice AWS Lambda + Telegram bot.

Primary LanguageJavaScript

This repository about learning and practicing about AWS Lambda, Serverless framework, and Telegram bot (BotFather).


  1. Install the Serverless framework and other modules.
npm install -g serverless
npm install
  1. Configure AWS credential.
export AWS_ACCESS_KEY_ID=<Access key ID>
export AWS_SECRET_ACCESS_KEY=<Secret access key>
  1. Create a new bot using Telegram BotFather.
/newbot
  1. Configure Telegram bot token.
export TELEGRAM_TOKEN=<Telegram Token>
  1. Deploy.
serverless deploy
  1. Configure webhook.
curl --request POST --url https://api.telegram.org/bot<Telegram Token>/setWebhook --header 'content-type: application/json' --data '{"url": "<API Gateway Endpoint>"}'