I would like to know the name of the user, however I cannot use the nodejs sdk since I use another language.
How can I ask for permission?
I would prefer a way with the normal json responses.
I would like to know the name of the user, however I cannot use the nodejs sdk since I use another language.
How can I ask for permission?
I would prefer a way with the normal json responses.
The request/response JSON formats for the API.AI webhooks with Actions is documented at https://developers.google.com/actions/apiai/webhook
As you've discovered, the data.google.permissions_request
attribute contains two fields regarding the request:
opt_context
contains a string which is read to give some context about why you're asking for the information.
permissions
is an array of strings specifying what information you're requesting. The strings can have the values
If you are using Java or Kotlin there is an Unofficial SDK. It matches the official SDK api nearly exactly. https://github.com/TicketmasterMobileStudio/actions-on-google-kotlin
I hacked this minimal script to get the JSON reponse which the nodejs sdk would return:
gaction.js:
I'm still no node.js expert so this might be not an optimal solution. When you have installed node and run the command
npm install actions-on-google
, this will install the necessary dependencies.When done you just need to run
node gaction
which will create this output:If you send now the JSON above you will be asked from Google Home. Have fun!