Questions tagged [google-assistant]

220 questions
1
vote
1 answer

How do I get google assistant to recognize my custom intent?

I have the actions xml referenced in my manifest as well as my slice provider
1
vote
0 answers

Using transaction api with no payement

I want to make a taxi reservation app using Google Assistant with no payment. I used Transaction API with no payment intent but always my project is not approved. app.intent("Default Welcome Intent", (conv) => { conv.ask(new…
1
vote
1 answer

Issue google action user.verificationStatus always returns unverified

I'm using action builder to create actions. it was all fine when I deployed the action a few months ago,( everything was working those days). but a few days ago when I checked the action it was not working properly. i find that it always returns…
1
vote
0 answers

Google Assistant / Dialogflow Back Press Context

from pydialogflow_fulfillment import DialogflowResponse from flask import Flask, request app = Flask(__name__) @app.route('/webhook', methods = ['POST']) def user(): request_ = request.get_json(force=True) print(request_) qr =…
1
vote
2 answers

App Action Works on App Actions Test Tool But not On Google Assistant

I have cloned the project from https://github.com/actions-on-google/appactions-common-biis-kotlin. I made the package name of this project the same as my draft project in Play Console which has a temporary app name 'com.acesoft.actions…
Andrew F.
  • 267
  • 2
  • 11
1
vote
1 answer

Failure events behavoir for DISCONNECT Intent

I'm implementing a Handler for the DISCONNECT Intent, and by reading the online documentation https://developers.google.com/assistant/smarthome/reference/intent/disconnect, I see that it is no such response format and it is not a reference in case…
1
vote
0 answers

Slot recognition issue with Deep linking in google assistant action builder

We created a Google assistant action using action builder. This action has a required slot. The slot is not recognized when the intent is invoked via deep linking. But it works fine when it is invoked in two steps. Example: User says: Ask [action…
vm1014
  • 41
  • 3
1
vote
0 answers

What to use instead of AlwaysOnHotwordDetector in android which is now deprecated?

I am working on developing an offline google assistant alternative using DeepSpeech voice recognition model. Am using Voice-Interaction Service and sessions for same. however, I also want that "hey-Google" like feature. I have been seeing many…
1
vote
1 answer

Google Assistant App Actions codelab example not working (Fit Actions) on AndroidTV

I'm trying out this example: https://codelabs.developers.google.com/codelabs/appactions/#0 I've built the app & installed it on my AndroidTV device, and able to launch it via: am start -a android.intent.action.VIEW -d…
droid_dev
  • 303
  • 4
  • 15
1
vote
0 answers

Problem cancelling intent while filling intent parameter with word "disregard"

I have a google Action with intents that require slot/parameter filling. My Action was recently rejected by Google for leaving the mic open without prompting the user and I cannot resolve the issue. As an example I have an intent named "trunk" which…
1
vote
1 answer

Google Home/Assistant - How to create "Works With Google" Device that can be added to Google Home "ecosystem"?

I have Google Home with Google Assistant throughout my house. I can control various smart devices as expected, but I have developed a few of my own devices which I would like to add to my existing ecosystem (controlled with NodeMCU controllers and…
1
vote
1 answer

In which cases user.verificationStatus can be verified/unverified?

I have created a project in google action with account-linking enable. and it is working fine on the test simulator and android device. But not working well with Google Nest Mini when I am trying to link my account to the project. And it is because…
1
vote
1 answer

Smart Life + IFTTT + Google Assistant trigger via Webhooks

Problem I bought these LED's lights off Amazon that you setup with Smart Life, which has Google/Alexa/IFTTT integration. Which is great but when I go to IFTTT and I try to setup a webhooks to trigger the lights turning on IFTTT says the devices are…
HuXu7
  • 317
  • 3
  • 13
1
vote
0 answers

Media Session 'Play X' voice command issue - callback isn't triggered

I have an android tv media app that uses exo player to play content. The app implements a media session, and the exo player media session extension so users can control the playback trough voice commands. When activating google assistant, commands…
1
vote
0 answers

Clear conversation session parameters in Google Action

In my conversation action, I have a scene in which the user is asked for a parameter. When I want to use that parameter I retrieve it that way: const parameter = conv.scene.slots ? conv.scene.slots["parameterName"]?.value : ""; It works…