Any plan to support KeyboardButton with request_contact and request_location?
resolved. it turns out , already supported:
var options = {
"parse_mode": "Markdown",
"reply_markup": JSON.stringify({
"keyboard": [
[{ text: "Send Location", request_location:true }],
[{ text: "Send Contact", request_contact: true }]
],
"one_time_keyboard" : true
})
};
@troywmz
The above code that @antonrifco share is correctly working ....
Please check bot father setting for your location of your bot and then try the above code ....
@FaRzad-845 solved. Thank you!
Most helpful comment
resolved. it turns out , already supported: