mirror of
https://github.com/yagop/node-telegram-bot-api
synced 2025-08-29 21:37:58 +00:00
Update polling.js
This commit is contained in:
parent
604d0ff155
commit
bbcf28bccc
@ -12,14 +12,14 @@ bot.getMe().then(function (me) {
|
||||
console.log('Hi my name is %s!', me.username);
|
||||
});
|
||||
|
||||
bot.onText(/\/photo.*/, function (msg) {
|
||||
bot.onText(/\/photo/, function (msg) {
|
||||
var chatId = msg.chat.id;
|
||||
// From file
|
||||
var photo = __dirname+'/../test/bot.gif';
|
||||
bot.sendPhoto(chatId, photo, {caption: "I'm a bot!"});
|
||||
});
|
||||
|
||||
bot.onText(/\/audio.*/, function (msg) {
|
||||
bot.onText(/\/audio/, function (msg) {
|
||||
var chatId = msg.chat.id;
|
||||
var url = 'https://upload.wikimedia.org/wikipedia/commons/c/c8/Example.ogg';
|
||||
// From HTTP request!
|
||||
@ -32,7 +32,7 @@ bot.onText(/\/audio.*/, function (msg) {
|
||||
});
|
||||
});
|
||||
|
||||
bot.onText(/\/love.*/, function (msg) {
|
||||
bot.onText(/\/love/, function (msg) {
|
||||
var chatId = msg.chat.id;
|
||||
var opts = {
|
||||
reply_to_message_id: msg.message_id,
|
||||
|
Loading…
x
Reference in New Issue
Block a user