fulfillment-webhook-nodejs
fulfillment-webhook-nodejs copied to clipboard
Default Fulfillment code in Dialogflow's Inline Editor
In package.json the node engine uses "node": "6". According to Google Cloud Functions, the Node.js 6 runtime is being depreciated and as a result the runtime should be updated to...
is there a code sample of how to use the webhook with a plain express app? eg to replace this: const agent = new WebhookClient({ request, response });
Based on this tutorial [https://cloud.google.com/dialogflow/docs/agents-versions?authuser=1](url) we can send request to another environment by manipulating the url. I am using nodejs and this library, how can I send the request to...