我想将我的实时位置发送给电报机器人用户,我收到此错误:


  ETELEGRAM:400错误的请求:消息中没有实时位置要编辑


我应该如何解决?

模组:(https://github.com/yagop/node-telegram-bot-api

码:

bot.on('callback_query', msg => {
    if (msg.data == `ourlivelocation`) {
        bot.editMessageLiveLocation(32.2624884, 53.4246188, {
            parse_mode: 'Markdown',
            message_id: msg.message.message_id,
            chat_id: msg.message.chat.id,
            reply_markup: {
                inline_keyboard: livelocationKeyboard
            }
        });

    }
});

最佳答案

您需要先发送实时位置。

sendLocation方法与live_period一起使用,就像以下实例一样:

javascript - ETELEGRAM:400错误的请求:消息中没有实时位置要编辑-LMLPHP

关于javascript - ETELEGRAM:400错误的请求:消息中没有实时位置要编辑,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47964216/

10-10 00:06