node telegram bot api
v0.50.0
Node.js 模块与官方 Telegram Bot API 进行交互。
npm i node-telegram-bot-api
✍️注意:如果您使用 Typescript,您可以安装包含该库的类型定义的包
npm install --save-dev @types/node-telegram-bot-api
const TelegramBot = require ( 'node-telegram-bot-api' ) ;
// replace the value below with the Telegram token you receive from @BotFather
const token = 'YOUR_TELEGRAM_BOT_TOKEN' ;
// Create a bot that uses 'polling' to fetch new updates
const bot = new TelegramBot ( token , { polling : true } ) ;
// Matches "/echo [whatever]"
bot . onText ( / /echo (.+) / , ( msg , match ) => {
// 'msg' is the received Message from Telegram
// 'match' is the result of executing the regexp above on the text content
// of the message
const chatId = msg . chat . id ;
const resp = match [ 1 ] ; // the captured "whatever"
// send back the matched "whatever" to the chat
bot . sendMessage ( chatId , resp ) ;
} ) ;
// Listen for any kind of message. There are different kinds of
// messages.
bot . on ( 'message' , ( msg ) => {
const chatId = msg . chat . id ;
// send a message to the chat acknowledging receipt of their message
bot . sendMessage ( chatId , 'Received your message' ) ;
} ) ;
注意:开发是针对开发分支完成的。最新版本的代码驻留在主分支上。实验功能驻留在实验分支上。
我们感谢开源社区中的所有开发人员不断花费时间和精力来推进这个项目。请参阅我们的贡献者列表。
我们有一个 Telegram 频道,我们可以在其中发布项目的最新动态。过来订阅吧!
我们还有一个 Telegram 小组来讨论与该库相关的问题。
使用这个库构建的一些东西可能会让您感兴趣:
麻省理工学院许可证 (MIT)
版权所有 © 2019 雅歌