2

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

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

代码:
此代码只是发送一个位置

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

1 回答 1

1

解决了。

bot.onText(/\/livelocation/, async  msg => {
    await bot.sendLocation(msg.chat.id, 35.804819, 51.434070, {
        live_period: 86400,
    });
});
于 2017-12-25T14:38:42.260 回答