从 Telegram 消息中获取 message_id - node.js
Get message_id from Telegram message - node.js
我对目前正在使用的 Telegram 机器人有疑问。我收到以下格式的用户消息:
update { update_id: 82618016,
message:
{ message_id: 363,
from: { id: 22303518, first_name: 'Steve', language_code: 'de-DE' },
chat: { id: 22303518, first_name: 'Steve', type: 'private' },
date: 1501501753,
text: 'j' } }
当我想访问聊天 ID 时,我可以毫无问题地使用
$.message.chat.id
一想得到message_id或first_name我只得到"undefined".
$.message.chat.first_name
$.message.message_id
有人可以帮我吗?据我所知,我正确理解了消息的结构,所以我真的不知道这里有什么问题。
非常感谢您
编辑:我在这里添加了更多我的代码:
机器人的主要代码(包括 webhook)是这样的:
initializeBot();
function initializeBot(){
const Telegram = require('telegram-node-bot');
const PingController = require('./controllers/ping');
const OtherwiseController = require('./controllers/otherwise');
const tg = new Telegram.Telegram('MY_TOKEN_IS_HERE', {
webhook: {
url: 'https://xxx.herokuapp.com',
port: process.env.PORT || 443,
host: '0.0.0.0'
}
})
tg.router.when(new Telegram.TextCommand('/ping', 'pingCommand'), new PingController())
.otherwise (new OtherwiseController());
}
当调用 OtherwiseController 时调用以下代码(我将其缩减为要点以阐明问题。
class OtherwiseController extends Telegram.TelegramBaseController {
handle($){
console.log($.message.chat.first_name);
console.log($.message.text);
console.log($.message.chat.id);
console.log($.message.message_id);
}
}
此消息的控制台输出
update { update_id: 82618020,
message:
{ message_id: 371,
from: { id: 22303518, first_name: 'Steve', language_code: 'de-DE' },
chat: { id: 22303518, first_name: 'Steve', type: 'private' },
date: 1501509762,
text: 'hello' } }
将是:
undefined
hello
22303518
undefined
使用以下方法提取您的 json 对象的键,然后您可以使用适当的键访问:
Object.keys($.message.chat);
我对目前正在使用的 Telegram 机器人有疑问。我收到以下格式的用户消息:
update { update_id: 82618016,
message:
{ message_id: 363,
from: { id: 22303518, first_name: 'Steve', language_code: 'de-DE' },
chat: { id: 22303518, first_name: 'Steve', type: 'private' },
date: 1501501753,
text: 'j' } }
当我想访问聊天 ID 时,我可以毫无问题地使用
$.message.chat.id
一想得到message_id或first_name我只得到"undefined".
$.message.chat.first_name
$.message.message_id
有人可以帮我吗?据我所知,我正确理解了消息的结构,所以我真的不知道这里有什么问题。
非常感谢您
编辑:我在这里添加了更多我的代码:
机器人的主要代码(包括 webhook)是这样的:
initializeBot();
function initializeBot(){
const Telegram = require('telegram-node-bot');
const PingController = require('./controllers/ping');
const OtherwiseController = require('./controllers/otherwise');
const tg = new Telegram.Telegram('MY_TOKEN_IS_HERE', {
webhook: {
url: 'https://xxx.herokuapp.com',
port: process.env.PORT || 443,
host: '0.0.0.0'
}
})
tg.router.when(new Telegram.TextCommand('/ping', 'pingCommand'), new PingController())
.otherwise (new OtherwiseController());
}
当调用 OtherwiseController 时调用以下代码(我将其缩减为要点以阐明问题。
class OtherwiseController extends Telegram.TelegramBaseController {
handle($){
console.log($.message.chat.first_name);
console.log($.message.text);
console.log($.message.chat.id);
console.log($.message.message_id);
}
}
此消息的控制台输出
update { update_id: 82618020,
message:
{ message_id: 371,
from: { id: 22303518, first_name: 'Steve', language_code: 'de-DE' },
chat: { id: 22303518, first_name: 'Steve', type: 'private' },
date: 1501509762,
text: 'hello' } }
将是:
undefined
hello
22303518
undefined
使用以下方法提取您的 json 对象的键,然后您可以使用适当的键访问:
Object.keys($.message.chat);