通过电报机器人获取用户位置经纬度

Sed*_*rei 3 javascript node.js telegram-bot node-telegram-bot-api

如何通过电报机器人获取用户位置纬度和经度?

模块:链接

代码:

bot.onText(/getLocation/, (msg) => {
  const opts = {
    reply_markup: JSON.stringify({
      keyboard: [
        [{text: 'Location', request_location: true}],
        [{text: 'Contact', request_contact: true}],
      ],
      resize_keyboard: true,
      one_time_keyboard: true,
    }),
  };
  bot.sendMessage(msg.chat.id, 'Contact and Location request', opts);
});
Run Code Online (Sandbox Code Playgroud)

Sed*_*rei 5

解决了 ??

bot.on('location', (msg) => {
  console.log(msg.location.latitude);
  console.log(msg.location.longitude);
});
Run Code Online (Sandbox Code Playgroud)