如何发送电报机器人实时位置?
我正在使用node-telegram-bot-api
模块。
代码:
此代码只是发送位置
await bot.sendLocation(msg.chat.id, 35.804819, 51.434070);
答案 0 :(得分:1)
解决。
bot.onText(/\/livelocation/, async msg => {
await bot.sendLocation(msg.chat.id, 35.804819, 51.434070, {
live_period: 86400,
});
});