Hi, as shown here
https://developers.facebook.com/docs/messenger-platform/send-messages/quick-replies#phone
we can use this code
{
“content_type”:“user_phone_number”
“content_type”:“user_email”
}
When the email/phone number quick reply is sent, the Messenger Platform will automatically pre-fill the displayed quick reply with the email from the user’s profile information.
I’d like to use these feature inside my Bot: I’m making a Custom Request with this code:
{
“text”:“Press on the phone number below:”,
“quick_replies”:[
{
“content_type”:“user_phone_number”
}
]
}
So the number appears, then the flow goes on without stopping and waiting for the user’s click/tap on it.
What I’d like to do, is:
- Send the Custom Request
- Wait for the click/tap on the phone number retrieved
- Store the value inside my Attibute “phone-number”.
Any suggestion?
Thanks a lot!