を編集するメッセージには、ライブの場所は、私はボットユーザーを電報マイライブの場所を送信したいが存在しない、ボットは、私はこのエラーを得た:ETELEGRAM:400不正な要求:
ETELEGRAM: 400 Bad Request: there is no live location in the message to edit
どのように解決すべきか?
モジュール:(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
}
});
}
});
'livelocationKeyboard'のですか? – Sean
'' 'const livelocationKeyboard = [[{ text:' '、 callback_data:' en' }] '' '、私はどのように解決すべきかわかりません! –
そして、場所コードを送信する場所はどこですか? – Sean