Telegram Bot通过node.js进行现场定位

如何发送电报机器人实时位置?

我正在使用node-telegram-bot-api模块。

编码:
此代码仅发送一个位置

    await bot.sendLocation(msg.chat.id, 35.804819, 51.434070);

解决方案

已解决。

bot.onText(//livelocation/, async  msg => {
    await bot.sendLocation(msg.chat.id, 35.804819, 51.434070, {
        live_period: 86400,
    });
});

相关文章