How to make a http request to other service in dialogflow fulfillment without firebase?
问题 I wrote a node.js fulfillment code to send my messages from Dialogflow to another services (in this code, it is postman) by simply using the http.request function. "use strict"; const express = require("express"); const bodyParser = require("body-parser"); const https = require('https'); const app = express(); app.use( bodyParser.urlencoded({ extended: true }) ); app.use(bodyParser.json()) app.post("/echo", function(req, res) { var speech = req.body.queryResult && req.body.queryResult