我需要在谷歌示例演示了我如何使用在谷歌JavaScript客戶端庫的主要 操作的操作這裏找到:光禿禿的骨頭Google上的行爲樣本?
https://github.com/actions-on-google/actions-on-google-nodejs
我需要的樣品告訴我該怎麼做以下和沒有更多:
- 設置我action.json文件服務谷歌主頁的請求(文件包)
- 獲取當前用戶的E-mail地址或其他唯一的,穩定的ID(OAuth的功能是什麼?)
- 用於響應與文本和預先記錄的音頻的請求JSON包格式
- Javascript代碼,顯示一個會話期間與谷歌進行通信所需的適當的步驟和消息
有在這裏谷歌樣本的操作的頁面:
https://github.com/actions-on-google
我經歷了不少人去了,問題是,他們使用我不需要的模塊和服務。這裏是我不想和會的方式只得到他們所使用的服務的列表:
- 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
你可以找到關於如何做每一件事情的文檔。 [動作包] (https://developers.google.com/actions/reference/rest/Shared.Types/ActionPackage) [User info](https://developers.google.com/actions/reference/rest/Shared.Types/AppRequest) #user) [Account linking](https://developers.google.com/actions/reference/rest/Shared.Types/AccountLinking) [JSON response](https://developers.google.com/actions/reference /rest/Shared.Types/AppResponse) [Node.JS clien t庫](https://developers.google.com/actions/nodejs-client-library-release-notes) –