I am trying to launch a web url that will act as a deeplink for my app to launch it, it there a way to launch a URL in DialogFlow or in Actions Google using there fulfilment or the webhook for the Google Actions, I have created a custom intent and against that intent I like to launch specific feature of my app but it is not triggering the intent as it do in case of Build In Intents so as an alternative if Google Assistant launch that URL the purpose will be served.
I found some code that looks useful but unfortunately it doesn't work for me. Below is the code
const app = dialogflow({debug: true});
app.intent('welcome', (conv) => {
conv.ask('Welcome! Do you want me to change color or pause spinning?');
conv.ask(new HtmlResponse({
url: 'https://your-web-app.com',
}));
});
Thanks in advance.