Skip to content

Files

Latest commit

dfdf5fb · Sep 25, 2019

History

History
This branch is 313 commits behind serverless/examples:master.

aws-ruby-line-bot

AWS-ruby-line-echo-bot

Follow this project,

I use my first language(ruby) to build this on serverless,

so you can use this project in others case.

Before you start

  1. LINE developer account
  2. LINE Messaging API

Get Started

  1. Install serverless via npm
$ npm install -g serverless
  1. Setup your AWS ceritficate
export AWS_ACCESS_KEY_ID=<your-key-here>
export AWS_SECRET_ACCESS_KEY=<your-secret-key-here>
  1. Insert you line bot secret & key
config.channel_secret = "YOUR_LINE_CHANNEL_SECRET"
config.channel_token = "YOUR_LINE_CHANNEL_TOKEN"
  1. Deploy the webhook function
npm install
serverless deploy

Now you can test your chatbot, have fun! Echo bot

References