@3846masa/linebot 中文文档教程

发布于 8年前 浏览 26 项目主页 更新于 3年前

@3846masa/linebot

用于 Node.js 的 LINE BOT API 包装器


NPMLICENSEdependencies

Docs

https://3846masa.github.io/node-linebot/

Install

npm install --save @3846masa/linebot

Usage

const LineBot = require('@3846masa/linebot/lib/LineBot').LineBot;

const bot = new LineBot({
  channelSecret: 'XXXXXXXXXX',
  channelToken: 'XXXXXXXXXX',
});

bot.on('webhook:*', (ev) => {
  console.log('You got a event!', ev);
});

bot.on('webhook:message', (ev) => {
  const message = ev.message;
  ev.reply(message);
});

bot.listen(process.env.PORT || 3000);

请参阅示例

LICENSE

MIT (c) 3846masa

Author

3846masa 3846masa

@3846masa/linebot

LINE BOT API wrapper for Node.js


NPMLICENSEdependencies

Docs

https://3846masa.github.io/node-linebot/

Install

npm install --save @3846masa/linebot

Usage

const LineBot = require('@3846masa/linebot/lib/LineBot').LineBot;

const bot = new LineBot({
  channelSecret: 'XXXXXXXXXX',
  channelToken: 'XXXXXXXXXX',
});

bot.on('webhook:*', (ev) => {
  console.log('You got a event!', ev);
});

bot.on('webhook:message', (ev) => {
  const message = ev.message;
  ev.reply(message);
});

bot.listen(process.env.PORT || 3000);

See examples.

LICENSE

MIT (c) 3846masa

Author

3846masa 3846masa

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文