Reputation: 5161
I have recently started creating a Azure Bot in Node js. I want to add a hyperlink in one of the bot response and send a proactive response after user has clicked on it. Something like:
Please click this link to complete the payment
.
and the link should be a hyperlink that will redirect to an endpoint.
I have tried finding a way to achieve it but so far, I haven't been able to achieve. I have seen the following link:
Can some one suggest me the way to achieve this.
Upvotes: 2
Views: 2069
Reputation: 1750
You can use markdown syntax.
The text must be treated as markdown formatting and rendered on the channel as appropriate.
Hyperlink markdown syntax :
[click this link](https://www.google.com/)
As per your code it would look like the following:
Please [click this link](www.greetings.com) to complete the payment
Reference:
Upvotes: 5