SerjoPepper / bot-brother

Node.js framework for telegram bots
214 stars 27 forks source link

How to request phone number? #19

Open mrleesin opened 6 years ago

mrleesin commented 6 years ago

request_contact: true

in the node-telegram-bot-api?

romap0 commented 6 years ago

Use requestContact and requestLocation in your method

return ctx
          .keyboard([[
            {text: 'Send contact', requestContact: true},
            {text: 'Send location', requestLocation: true}
          ]])