saleehk / dialogflow-updates-nodejs

Updates API sample using Dialogflow, Node.js and Cloud Functions for Firebase

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Actions on Google: Updates API sample using Node.js and Cloud Functions for Firebase

This sample shows an app that gives tips about developing apps for the Google Assistant using Actions on Google.

Setup Instructions

Steps

  1. Use the Actions on Google Console to add a new project with a name of your choosing and click Create Project.

  2. Click Skip, located on the top right to skip over category selection menu.

  3. On the left navigation menu under BUILD, click on Actions. Click on Add Your First Action and choose your app's language(s).

  4. Select Custom intent, click BUILD. This will open a Dialogflow console. Click CREATE.

  5. Click on the gear icon to see the project settings.

  6. Select Export and Import.

  7. Select Restore from zip. Follow the directions to restore from the AoG-Tips.zip file in this repo.

  8. Go to the Google Cloud Platform console to activate the Actions API, and select the project that you have created on the Actions on Google console. Then, click the Enable button.

  9. Go to the Firebase console and select the project that you have created on the Actions on Google console.

  10. Click the gear icon, then select Project settings > SERVICE ACCOUNTS.

  11. Generate a new private key and save it in the functions folder calling the file service-account.json.

  12. On the left navigation menu under DEVELOP, click on Database.

  13. Under Cloud Firebase Beta, click Get Started.

  14. Select Start in test mode, click Enable.

  15. In the functions directory, deploy the fulfillment webhook provided in the functions folder using Google Cloud Functions for Firebase:

    1. Follow the instructions to set up and initialize Firebase SDK for Cloud Functions. Make sure to select the project that you have previously generated in the Actions on Google Console and to reply N when asked to overwrite existing files by the Firebase CLI.
    2. Run npm install to install dependencies.
    3. Run firebase deploy and take note of the endpoint where the fulfillment webhook has been published. It should look like Function URL (aogTips): https://${REGION}-${PROJECT}.cloudfunctions.net/aogTips
  16. Go back to the Dialogflow console and select Fulfillment from the left navigation menu. Enable Webhook, set the value of URL to the Function URL from the previous step, then click Save.

  17. To add tips to the newly created Firestore database, load in a browser https://${REGION}-${PROJECT}.cloudfunctions.net/restoreTipsDB.

  18. Go to the Actions on Google console.

  19. Follow the Console Setup instructions in the Daily Updates and the Push Notifications documentation to enable daily updates and push notifications.

  20. Type Talk to my test app in the simulator, or say OK Google, talk to my test app to any Actions on Google enabled device signed into your developer account.

  21. To test daily updates, choose a category. After the tip, the app will show a suggestion chip to subscribe for daily updates.

  22. To test push notifications, choose to hear the latest tip. After the top, the app will show a suggestion chip to subscribe for push notifications. Add a new tip to the Firestore DB to trigger a notification to the subscribed users.

For more detailed information on deployment, see the documentation.

References and How to report bugs

How to make contributions?

Please read and follow the steps in the CONTRIBUTING.md.

License

See LICENSE.md.

Terms

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.

Google+

Actions on Google Developers Community on Google+ https://g.co/actionsdev.

About

Updates API sample using Dialogflow, Node.js and Cloud Functions for Firebase

License:Apache License 2.0


Languages

Language:JavaScript 100.0%