Skip to content

Instantly share code, notes, and snippets.

@PamornT
Created September 23, 2019 14:34
Show Gist options
  • Save PamornT/2c6a6b1fe540e84868120a309516de22 to your computer and use it in GitHub Desktop.
Save PamornT/2c6a6b1fe540e84868120a309516de22 to your computer and use it in GitHub Desktop.
const reply_notfound = (req) => {
return request({
method: `POST`,
uri: `${LINE_MESSAGING_API}/reply`,
headers: LINE_HEADER,
body: JSON.stringify({
replyToken: req.body.events[0].replyToken,
messages: [
{
type: `text`,
text: 'ไม่พบหมายเลขพัสดุที่ระบุ'
}
]
})
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment