I need an Actions on Google sample that shows me how to use the main Actions on Google Javascript client library found here:
https://github.com/actions-on-google/actions-on-google-nodejs
I need the sample to show me how to do the following and no more:
- Set up my action.json file to service Google Home requests (package file)
- Get the current user E-mail address or other unique, stable ID (OAuth functions?)
- JSON package format for responding to requests with text and pre-recorded audio
- Javascript code that shows the proper steps and messages needed to communicate with Google during a session
There is a page of Actions on Google samples here:
https://github.com/actions-on-google
I went through quite a few of them and the problem is they use modules and services I don't need. Here is a list of services they use that I don't want and will only get in the way:
- Firebase Cloud Functions (I will be hosting my own backend server to manage the conversation with Google)
- Api.ai (or any similar service). We have our own natural language processing and conversation flow management code
- Console. Same as above