Questions tagged [actions-on-google]

Actions on Google let you build for the Google Assistant.

Introduction

The Google Assistant is a virtual assistant that is available on smartphones, Google Home and other devices.

Actions on Google is a developer platform to develop apps and publish them on the Google Assistant.

Details: https://developers.google.com/actions/

What questions should have this tag?

Links for learning more

Related Tags

3380 questions
1
vote
1 answer

Does fulfillment changes require a new review?

Given I have a published google assistant voice app with dialogflow. If I change fulfillment parameters (e. g. sent headers or URL), will this require a new review of the voice app? If so, how can I smoothly change these parameters without breaking…
Toni
  • 1,593
  • 1
  • 11
  • 21
1
vote
1 answer

Reporting error for specific device when handling query intent

I'm trying to implement an handler for the query request It's not clear to me what should be returned in case I'm not able to return the status of a device. In particular I would like to understand how to reply if one of the devices in the query…
1
vote
3 answers

Actions on Google implicit account linking works in simulator/browser, but not on device (via Google Home app)

I've implemented the implicit flow for Actions on Google account linking, and am using Dialogflow (previously API.AI) to define intents. The full flow works in the device simulator (from AOG). The first intent gets a "It looks like your account…
Jeremy Gordon
  • 551
  • 4
  • 15
1
vote
1 answer

Do Google Actions have unique ids?

When developing for Alexa, every skill has a unique Id. This allows me to develop multiple skills, using the same lambda / codebase, that return unique info based on the skill id. However, from what I've seen with Google Assistant, Actions don't…
nealrs
  • 435
  • 1
  • 5
  • 19
1
vote
2 answers

Unlock a nodejs program through email answer

I'm working with dialog flow on Google home, and I have a program which sends an email (via Nodemailer), I would like to lock a function, and unlock it depending on the email's answer. Maybe I could put a link inside the email as "if you agree with…
1
vote
0 answers

How to integrate Transaction API in Action on Google

Trying to integrate Transactions API for reservations only (No Payments required). While invoking transaction decision, the app is not responding and I hear “ is not responding right now. Try again soon.” Here are my steps: 1. Check if transaction…
1
vote
1 answer

Is there a way to fully deploy Google Actions from command line?

When building Google Actions using the Actions SDK to run on the Assistant or Google Home, according to https://developers.google.com/actions/extending-the-assistant you can use the firebase and gactions command line tools to partially automate…
Kane
  • 549
  • 4
  • 8
1
vote
1 answer

Change the way the assistant reads out numbers

Is there a way to change how google assistant reads out numbers? For example, 108 is a number, and assistant reads it out as "one hundred eight." Here, instead of "one hundred eight" I want the assistant to speak like "one oh eight".
miserable
  • 697
  • 1
  • 12
  • 31
1
vote
1 answer

how to make intent configured for updates(push notfications) in google actions?

I have followed all the steps given on https://developers.google.com/actions/assistant/updates but when I'm trying to test the conversation send api https://actions.googleapis.com/v2/conversations:send?access_token="My_Access_Token" I'm getting…
1
vote
1 answer

Does Google Actions SDK currently ignore possibleIntents even for speech biasing?

I see here that custom intents in actions.json are used for speech biasing https://developers.google.com/actions/reference/rest/Shared.Types/AppResponse#ExpectedIntent What was expected I have an intent, general.price, that contains high as one of…
1
vote
0 answers

How to unit test Google Home functions?

The way my Google Home app is organizaed is a class containing all intent methods and then at the bottom a line exports.myapp = functions.https.onRequest( (request, response) => new MyApp(request, response).run() ); Since the functions in MyApp…
rzs
  • 99
  • 1
  • 3
  • 8
1
vote
3 answers

ReferenceError: request is not defined in DialogFlow using node.js

const DialogflowApp = require('actions-on-google').DialogflowApp; const app = new DialogflowApp({request: request, response: response}); const WELCOME_INTENT = 'input.welcome'; // the action name from the Dialogflow intent const NUMBER_INTENT =…
1
vote
1 answer

Account linking with Actions SDK?

I'm trying to require account linking with Actions SDK, but all the documentation I can find only tells you how to do it with Dialogflow. I've filled in the OAUTH implicit grant fields in Actions Console > Overview > Account linking. However, when…
Travis
  • 1,463
  • 11
  • 12
1
vote
1 answer

DialogFlow, keep assistant open after completing action

I am having a problem when testing my Google Assistant app (made in DialogFlow). Every time I run the first intent and satisfy the criteria to run the corresponding action, the assistant ends and doesn't allow the user to input a value that may…
Jon Hick
  • 153
  • 1
  • 6
1
vote
2 answers

Multiple Dialogflow commands asked at same time

I have an Action where the user can set values of different parameters. Currently this is implemented something like this, and it works well: Now I want to make the conversation less robot-like and more flexible, so I would like to allow users to…
Prisoner
  • 49,922
  • 7
  • 53
  • 105