Francesco
Francesco

Reputation: 372

Telegram, what is Geolocation method used?

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

Answers (1)

Sean Wei
Sean Wei

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

Related Questions