Reputation: 372
I am developing a Telegram bot. During the conversation bot asks the location_request in this way:
reply_keyboard = [[KeyboardButton("Send Location", request_location=True)],
[KeyboardButton("/cancel")]
]
update.message.reply_text('Share your location:',
reply_markup=ReplyKeyboardMarkup(reply_keyboard))
How to know the geolocation method used by device?
For instance:
Thanks in advance
Upvotes: 0
Views: 281
Reputation: 8005
Unfortunately, you can't know about it :(
Even Telegram itself, it didn't verify this data from phone, so there might have someone use Fake GPS.
Upvotes: 1