Questions tagged [google-home]

This tag targets question related to programming for Google Home device.

752 questions
1
vote
1 answer

What is the best UX of account linking in Google Home App

I'm developing my smart home device. For now, it doesn't have a native app but only a web client. My home-actions work well, but I'm worried about the complexity of adding a new device in the google home app. According to add new device user have…
1
vote
2 answers

How to get Access token from Google Smart Home Action?

I'm using the Google Smart Home action and my skill is successfully linked. Getting a below SYNC intent. { "requestId": "ff36a3cc-ec34-11e6-b1a0-64510650abcf", "inputs": [{ "intent": "action.devices.SYNC" }] } But not getting the…
1
vote
0 answers

Action is publish still it not display in other account

Submitted Google Action for review and got an email XXXXXX-8x1f3 was approved and is now in the process of being deployed to Production!. Still, I can't see action in another user account.
1
vote
0 answers

voice command not accept in google smart home

I am developing Smart Home in Google Home After sync devices in google home. everything working fine with Google Home Application(https://play.google.com/store/apps/details?id=com.google.android.apps.chromecast.app&hl=en) But when I access through…
1
vote
1 answer

Google Home - Is reporting state mandatory?

I'm trying to validate our integration with Google Home, and as it turns out, the smart home test suite expects reporting state to be implemented. AFAIK, this is not necessary, but evidently, at least for this test suit, it is. I'm always reporting…
Diego
  • 23
  • 6
1
vote
1 answer

does reportStateAndNotification support multiple device state reporting?

I am trying to report the status of a couple of devices via API and I am getting this error Request payload: { "requestId":"3310672920401175639", "agentUserId":"5d8f3dd42ce05140dc1c6a20", "payload":{ "devices":{ …
kakopappa
  • 5,023
  • 5
  • 54
  • 73
1
vote
1 answer

Is it possible to send a deferred response for action.devices.EXECUTE

I just wanted to know whether it's possible to send a deferred response to action.devices.EXECUTE intent. When the server receives this intent, Send the response back as "PENDING" Send this command to IoT module. Wait for a response from IoT…
kakopappa
  • 5,023
  • 5
  • 54
  • 73
1
vote
0 answers

"Let's get AppName" and "Here's AppName" now always present; used to get removed after a certain number of frequent invocations

I've been in email contact with support and they have apparently never experienced this behavior. I've been testing my Action for about a year now. Recently (few weeks to a month), I've been hearing the introductory messages of "Let's get AppName"…
1
vote
1 answer

Fulfillment error occurred when trying to test google action in voice assistant

I'm trying to create a webhook that will get the Intent and current state, change the state, and send back a reply using actions-on-google library for node.js. index.js is as follows: 'use strict'; const {dialogflow} =…
Sanjani Gunathilaka
  • 229
  • 1
  • 3
  • 11
1
vote
1 answer

How can I provide a custom re-prompt for each intent on the event of no.input?

I am creating a Questionnaire bot for smart speakers that asks a user several questions. And the answers are stored in firebase. I am using node.js, actions-on-google. It conversation looks like this: Bot: Hi user, Are you ready to answer the…
maharrx
  • 65
  • 1
  • 2
  • 11
1
vote
1 answer

Interact with Google Actions through Google Assistant SDK

I'm working on my own voice assistant based on the Google Assistant SDK. Now I'm wondering if it's possible to also communicate with custom Google Actions. (such as games and other actions that are not built-in to the SDK itself) Thanks in advance!
1
vote
1 answer

Is there a way to connect my google home mini to python so that I can send the speech to text to my python interpreter to parse

I want to do a side project and just wanted to know how to connect my google home mini to python code? using some api if i can send the speech the user sends to my python editor to parse through, it would do exactly what i need
1
vote
1 answer

Triggering Google Home Device to Speak

Without first speaking to GA, I would like GA to speak to the user based on a triggering event. I would like to trigger Google Assistant to speak a message based on an event such as a temperature sensor reaching a limit. For example, if the…
1
vote
1 answer

How do I force my Google home to download latest version of the local app

I'm developing the smart device handler using Google Home Local SDK. How do I force device to reload and restart the app? (now I have to unplug the power cord, it does not looks good as it sparks) also I have a couple of Google Home devices, how do…
Andrew Matiuk
  • 924
  • 1
  • 7
  • 21
1
vote
1 answer

Google Smart Home Action: Account linking successful, SYNC response sent by fulfillment with status code 200 but Google Home app reporting error

I am building a Google Smart Home action with fulfillment hosted on AWS as a lambda function in node.js with the node implementation for Google Smart Home actions, exposed via AWS API gateway and an external OAuth 2 provider serving as authorizer…