google-home

Requesting User Location from Google Actions with Api.ai

天大地大妈咪最大 提交于 2019-12-03 21:34:42
Google Actions can provide you with the user's location, name, and few other details. How can this be done on Api.ai without the nodejs SDK? All examples from Google are using the Nodejs sdk. According to the Conversation Api it is just a matter of putting the correct json in the response, however it is unclear how to get Api.ai to fill in this json. I've read the docs here , but am still unclear. Sample code, or more detailed documentations, would be great for the non nodejs developers. I'm working in Java, however a good explanation of how Api.ai builts the response json for Google Actions

Got the “My test app isn't responding right now. Try again soon.” error message even a clean start from Google Assistant Simulator

偶尔善良 提交于 2019-12-03 16:02:00
I am still quite new to this topic, so sorry if I didn't provide enough information. For the first time, I copoed everything from https://developers.google.com/actions/dialogflow/first-app to learn about it, which works great. After, I tried to create my own one, then at the end, I got this message "My test app isn't responding right now. Try again soon." from https://console.actions.google.com/project/[[PROJECT-ID]]/simulator/ . Therefore, I tried to delete everything and make a complete new start, including all the projects on https://console.actions.google.com/ and https://console

why I can't use google action in web simulator

六眼飞鱼酱① 提交于 2019-12-03 10:50:43
Does anyone know why my action can NOT use in web simulator?? I set my invocation name for testing as "test", and in web simulator , I try to use my action by input "Talk to test", but it told me "Sorry, this action is not available in simulation"... Is there anything wrong with me ?? This bug should be resolved now. If you are still having this problem, you should try pairing your account with an actual device first. The issue was resolved for me by signing in to the Google Home app on my mobile device and pairing it to a home unit. After that, using the simulator then works in the browser. I

Change language of actions-on-google websimulation or test google home in German

拜拜、爱过 提交于 2019-12-03 03:08:34
I am using actions on google with api.ai. I am able to create a api.ai bot in a language other than English, but the web simulator of actions-on-google ( https://developers.google.com/actions/tools/web-simulator ) seems to work in English only? Is there any option to change the language there or a time schedule when other languages (in my case German) will be available in the simulator? Currently testing a non English action is impossible, because the web simulator does not even forward requests if it doesnt understand their meaning on its own. Update 09/08/2017 : Google Home is now available

Stuck on Google Home Tutorial

痴心易碎 提交于 2019-12-02 23:37:29
问题 I am working on an intro to Actions on Google tutorial. I made it to page 4 and I am stuck on the "Fulfillment Webhook and Deployment" stage. I put the sample backend code into a Go file called populationai.go. I'm confused as to how to do the commands listed in the "Using ngrok to locally run the Webhook" section in Windows, as they are designed for a different operating system. Should I be doing these steps in the command prompt of Windows in the first place? Thanks. https://www

Stuck on Google Home Tutorial

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-02 14:41:10
I am working on an intro to Actions on Google tutorial. I made it to page 4 and I am stuck on the "Fulfillment Webhook and Deployment" stage. I put the sample backend code into a Go file called populationai.go. I'm confused as to how to do the commands listed in the "Using ngrok to locally run the Webhook" section in Windows, as they are designed for a different operating system. Should I be doing these steps in the command prompt of Windows in the first place? Thanks. https://www.programmableweb.com/news/how-to-get-started-google-actions/how-to/2017/01/31?page=4 Here are the steps I'm

Google Assistant Dialogflow API V2 webhook ETag error

别等时光非礼了梦想. 提交于 2019-12-02 10:54:18
问题 I'm trying to return simple text response and display a basic card within Google Assistant app using the following code: public GoogleCloudDialogflowV2WebhookResponse Search(GoogleCloudDialogflowV2WebhookRequest request) { GoogleCloudDialogflowV2WebhookResponse whr = new GoogleCloudDialogflowV2WebhookResponse(); whr.FulfillmentMessages = new List<GoogleCloudDialogflowV2IntentMessage>(); whr.FulfillmentMessages.Add(new GoogleCloudDialogflowV2IntentMessage() { Platform = "ACTIONS_ON_GOOGLE",

Golang runtime panic when using gaction on Linux to update Google Home/Assistant package?

好久不见. 提交于 2019-12-02 05:17:07
问题 I am trying to build my first Google Home app using the instructions in this tutorial, on a Linux 14.04 LTS box (not Windows): https://medium.com/google-cloud/building-your-first-action-for-google-home-in-30-minutes-ec6c65b7bd32 The deployment of my app to Google Cloud succeeds. However, when I get to the section where you test your app with the simulator, the following gactions commands fail with the message "No help topic for preview/simulate" $ gactions preview --action_package action.json

dialogflow simple fulfillment webhook in c# not working

折月煮酒 提交于 2019-12-01 18:51:23
I am very new to dialogflow and WebAPIs, and having trouble with a simple dialogflow fulfillment webhook written in C# and hosted on Azure. I am using dialogflow V2.0 API version. Currently my fulfillment works and returns a simple response but has no regard to the intent and parameters. I am trying to now parse the JSON get the intent do a simple select case and return the value of the parameters recevied. And this is giving me lot of trouble. The webhook link, my code and the error message returned in the "catch" block are given below public JsonResult Post(string value) { try { dynamic obj

dialogflow simple fulfillment webhook in c# not working

拈花ヽ惹草 提交于 2019-12-01 17:58:42
问题 I am very new to dialogflow and WebAPIs, and having trouble with a simple dialogflow fulfillment webhook written in C# and hosted on Azure. I am using dialogflow V2.0 API version. Currently my fulfillment works and returns a simple response but has no regard to the intent and parameters. I am trying to now parse the JSON get the intent do a simple select case and return the value of the parameters recevied. And this is giving me lot of trouble. The webhook link, my code and the error message