Questions tagged [actions-on-google]

Create with Actions on Google to develop features for the Google Assistant.

The perplexing saga of Google Assistant and the WorldWeatherOnline API

I recently started developing API agents for Google Assistant. I followed the instructions provided in the api.ai documentation available at to create an agent that retrieves weather information and provides a response. While the code is functional, I w ...

There has been no answer provided. Could this be due to being utilized in an asynchronous function that was not returned as a promise?

I encountered the following error message: Error: No response has been set. Is this being used in an async call that was not returned as a promise to the intent handler? at DialogflowConversation.response (/user_code/node_modules/actions-on-google/dis ...

Encountering difficulties while integrating DialogflowConversation with Fulfillment SDK

I have been utilizing the Node.js Fulfillment SDK (available at https://github.com/dialogflow/dialogflow-fulfillment-nodejs) and my goal is to integrate the DialogflowConversation to access user storage. My attempt at using this straightforward code goes ...

Guide to navigating to a different intent in a Google Action (Google Assistant Action)

Presently, I am developing an Action for the Google Assistant that prompts users to input their phone number. Following this prompt, another intent will repeat the phone number provided and inquire if it is correct. If the user indicates 'no', I ...

Executing Tasks with Google Assistant on an App Using Dialogflow and Node.js on a Locally Hosted HTTPS Server (MalformedResponse: Mistake in Webhook, code

I have developed an app on Google Actions using Dialogflow and Node.js. Initially, it was hosted on Heroku server but now I want to host it on my own server with HTTPS. While the app functions properly on Heroku server, it is not working on my server and ...

What is the process for sending an HTTP request within the Dialogflow -> Fulfillment environment?

When it comes to interacting with the API of my website to rectify the response for Google Assistant, I am facing some difficulties. 'use strict'; var requestNode = require('request'); const functions = require('firebase-functions'); const {WebhookClient ...

encountering the error "Could not find a corresponding intent handler for: null" when trying to access a webhook URL

I have been facing an issue with calling a webhook from Dialogflow. I am not receiving any response from the webhook, and instead, I am getting the response from the intent section that I have configured. I have made sure to enable the webhook for each int ...