Hi , I’ve already developed a Dialogflow app with a webhook endpoint on my server mysite.com/dialogflow-endpoint
I need to switch to the Nodeclient as suggested by your team to handle(as far as they said) cards responses.
What I don’t get is this: how can I bind my actual webhook (express) to the intent? In your example you do:
express().use(bodyParser.json(), app).listen(3000)
and you bind the app to the intent directly, so should I also change the dialogflow’s endpoint to the root url (on dialogflow site)?
How will this affect other services that I would like to add like Alexa?