Questions tagged [google-home]

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

752 questions
0
votes
1 answer

How to fetch access token from OAuth used in google action for smart home

For my smart home action I used fake auth as shown in codelab- smartwasher application. (For testing purpose ). The app is working fine. I have build my own code to work with my devices(Switches). Now When I am implementing OAuth which uses my own…
iSukhi
  • 25
  • 1
  • 10
0
votes
1 answer

MalformedResponse expected_inputs[0].input_prompt.rich_initial_prompt: 'carousel_browse' is only supported for clients that support a web browser

I am trying to run BrowseCarousel on a smart display but I am getting the following error MalformedResponse expected_inputs[0].input_prompt.rich_initial_prompt: 'carousel_browse' is only supported for clients that support a web browser.. My…
Chris
  • 1,641
  • 1
  • 16
  • 17
0
votes
1 answer

Actions On Google Async Issue: Error: No response has been set

Receiving the following error on my Google Diaglogflow intent from the intent below. The console.log("res", res) is correctly logging the JSON, but Error: No response has been set. Is this being used in an async call that was not returned as a…
Jamie Buck
  • 43
  • 1
  • 4
0
votes
1 answer

how to make async call using request-promise in google home action

I am trying to call a API in onSync() and return payload so that I will get number of devices. Even the api is returning me the proper data I am unable to show the devices. Following is the code snippet. app.onSync((body) => { // TODO: Implement…
iSukhi
  • 25
  • 1
  • 10
0
votes
1 answer

How to write a response message when first command succeeded and second command failed on same EXECUTE intent

I cannot understand how to write a response like following situation. Precondition AC_UNIT supports TEMPERATURE_SETTING traits. AC_UNIT's availableThermostatMode is "off,on,heat,cool" AC_UNIT's current mode is cool. When I do a "Set the heat to…
sh_rh
  • 3
  • 1
0
votes
1 answer

Google Smart Home custom devices and sensors

Is there any way to use the Google Smart Home actions platform for custom devices that are not supported like let's say a motion sensor? If not is there any way we can create custom actions and make it work together with Smart Home platform?
0
votes
0 answers

Actions on google: how to get callbacks for pause, resume, next, previous commands while playing songs

I am developing actions for google home. I have developed music actions and the songs are playing fine in google-home. But how to get callbacks for pause, resume, next, previous commands to your webhook. When pause/resume command is called google…
Rajeev Shetty
  • 1,534
  • 1
  • 17
  • 27
0
votes
1 answer

Where can you find your actions in google-home app which is not deployed but still in development phase

I am developing actions for google home. It is still in development phase. I have developed music actions and the songs are playing fine in google-home. I am performing account linking which is also working properly by getting account linking card…
Rajeev Shetty
  • 1,534
  • 1
  • 17
  • 27
0
votes
2 answers

music playback on Google Home

I'm trying to migrate a music player Alexa Skill to Google Home. But I cannot find a pre-built music playback (Actions or DialogFlow)... I want to reproduce streaming music using my own music server (not from Spotify or Google music). I found a…
Mauro
  • 21
  • 1
0
votes
2 answers

Actions SDK conv.hasScreen not working as expected

I am building an action using DialogFlow and Firebase cloud functions. I have a simple check to either ask a question or close the conversation depending on user's device type. if (conv.hasScreen) { response += `Do you want to see a…
Sai
  • 2,089
  • 3
  • 19
  • 30
0
votes
2 answers

Working time of webhook in dialogflow or alternative

I'm writing a bot for myself, which could, on request, find torrents and download them to my home media center. I receive an error with my webhook: request lives only ~ 5 seconds. Parsers work 1-10 seconds + home server on hackberry is very…
Nekwave
  • 3
  • 2
0
votes
1 answer

Custom MP3 response to voice command

I would like my Google Home to respond with a sound byte (mp3) to commands such as "Turn off Living Room Lights". Anyone know how I accomplish this?
0
votes
0 answers

DeepLink with google actions. First ask is never called

I have verified the app and the website. Deeplink works. But the issue is with the ask conversation. If you put 2 asks, only the last one will be executed but not the first. So for example: app.intent('Default Welcome Intent', conv => { …
WinterChilly
  • 1,549
  • 3
  • 21
  • 34
0
votes
1 answer

Triggering an intent in my dialogflow webhook does not allow use of it's followup intents

From my Deals List - yes intent, if I direct the user to another intent called Product Details by evoking its action with conv.followup(). It will send the user there with it's expected parameters. conv.followup('product_detail_intent_event', { …
Will
  • 71
  • 6
0
votes
2 answers

Spring-Boot and DialogFlow : Why I receive an anonymous request on my webhook defined in DialogFlow?

I'm creating a web application with Spring Boot that defines a REST API accessible via OAuth2 authentication for use with Google Assistant I configured DialogFlow (Webhook fulfillment configured with the URL to the endpoint of my REST API) I…