2

How Can I send telegram bot live location?

I'm using node-telegram-bot-api Module.

Code:
This Code just Send a Location

    await bot.sendLocation(msg.chat.id, 35.804819, 51.434070);
Saeed Heidarizarei
  • 8,406
  • 21
  • 60
  • 103

1 Answers1

1

Solved.

bot.onText(/\/livelocation/, async  msg => {
    await bot.sendLocation(msg.chat.id, 35.804819, 51.434070, {
        live_period: 86400,
    });
});
Saeed Heidarizarei
  • 8,406
  • 21
  • 60
  • 103