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