Skip to content

Instantly share code, notes, and snippets.

View doniwirawan's full-sized avatar
🪄
Build

Doni Wirawan doniwirawan

🪄
Build
View GitHub Profile
@doniwirawan
doniwirawan / Line bot server
Created May 12, 2022 07:01
Line bot server
require('dotenv').config()
const configuration = {
channelAccessToken: process.env.LINE_CHANNEL_ACCESS_TOKEN,
channelSecret: process.env.LINE_CHANNEL_SECRET
}
const express = require('express')
const app = express()
const line = require('@line/bot-sdk')
const client = new line.Client(configuration)