This sample demonstrates Actions on Google user engagement features for use on Google Assistant including daily updates and push notifications -- using the Node.js client library and deployed on Cloud Functions for Firebase.
- Node.js and NPM
- We recommend installing using NVM
- Install the Firebase CLI
- We recommend using version 6.5.0,
npm install -g [email protected]
- Run
firebase login
with your Google account
- We recommend using version 6.5.0,
- From the Actions on Google Console, New project > Create project > under More options > Conversational
- From the top menu under Develop > Actions (left nav) > Add your first action > BUILD (this will bring you to the Dialogflow console) > Select language and time zone > CREATE.
- In the Dialogflow console, go to Settings ⚙ > Export and Import > Restore from zip using the
agent.zip
in this sample's directory.
- In the Google Cloud Platform console, select your Project ID from the dropdown
- From Menu ☰ > APIs & Services > Library > select Actions API > Enable
- Under Menu ☰ > APIs & Services > Credentials > Create Credentials > Service Account Key.
- From the dropdown, select New Service Account
- name:
service-account
- role: Project/Owner
- key type: JSON > Create
- Your private JSON file will be downloaded to your local machine
- name:
- Save private key as
service-account.json
infunctions/
- Back in the Actions on Google console > under the top menu Develop > Actions (left nav):
- Select the
tell_tip
intent > under User engagement:- Enable
Would you like to offer daily updates to users?
- Title:
advice Alert
> Save
- Enable
- Select the
tell_latest_tip
intent > under User engagement:- Enable
Would you like to send push notifications? If yes, user permission will be needed
- Title:
latest info Alert
> Save
- Enable
- From the Firebase console, find and select your Actions on Google Project ID
- In the left navigation menu under Develop section > Database > Create database button > Select Start in test mode > Enable
- On your local machine, in the
functions
directory, runnpm install
- Run
firebase deploy --project {PROJECT_ID}
to deploy the function- To find your Project ID: In Dialogflow console under Settings ⚙ > General tab > Project ID.
- Return to the Dialogflow Console > select Fulfillment > Enable Webhook > Set URL to the Function URL that was returned after the deploy command > SAVE.
Function URL (aogTips): https://${REGION}-${PROJECT_ID}.cloudfunctions.net/aogTips
- In a browser, go to
https://${REGION}-${PROJECT}.cloudfunctions.net/restoreTipsDB
, to add data to the Firestore database. - From the left navigation menu, click Integrations > Integration Settings under Google Assistant > Enable Auto-preview changes > Test to open the Actions on Google simulator then say or type
Talk to my test app
.- To test daily updates, choose a category and below the tip, there will be a
Send daily
suggestion chip to subscribe for daily updates. - To test push notifications, choose
most recent
and below the tip, there will be anAlert me of new tips
suggestion chip to subscribe for push notifications. Then you will need to add a tip to Firestore DB to receive the push notification.
- To test daily updates, choose a category and below the tip, there will be a
- Then add a new tip to the Firestore Database to trigger a notification to the subscribed users. In the tips collection > select Add document:
- Document ID: select Auto ID
- field:
category
, type: string, value:tools
- field:
created_at
, type: string, value:2019-04-29T015:00:00.000Z
and modify value to current date/time - field:
tip
, type: string, value:Here's the most recent info about tools
- field:
url
, type: string, value:https://developers.google.com/actions/assistant/updates/notifications
- You can test your Action on any Google Assistant-enabled device on which the Assistant is signed into the same account used to create this project. Just say or type, “OK Google, talk to my test app”.
- You can also use the Actions on Google Console simulator to test most features and preview on-device behavior.
- When testing on an iOS device, ensure that notifications are enabled for Assistant under settings.
- Questions? Go to StackOverflow, Assistant Developer Community on Reddit or Support.
- For bugs, please report an issue on Github.
- Actions on Google Documentation
- Actions on Google Codelabs
- Webhook Boilerplate Template for Actions on Google
Please read and follow the steps in the CONTRIBUTING.md.
See LICENSE.
Your use of this sample is subject to, and by using or downloading the sample files you agree to comply with, the Google APIs Terms of Service.