All Projects → actions-on-google → Dialogflow Webhook Boilerplate Java

actions-on-google / Dialogflow Webhook Boilerplate Java

Licence: apache-2.0
Webhook Boilerplate using the Java client library for Actions on Google

Programming Languages

java
68154 projects - #9 most used programming language

Actions on Google: Webhook Boilerplate

Boilerplate to help you get started quickly with the Java client library for Actions on Google.

Setup Instructions

Action Configuration

  1. From the Actions on Google Console, New project (this will become your Project ID) > Create Project.
  2. Scroll down to the More Options section, and click on the Conversational card.
  3. 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.
  4. In Dialogflow, go to Settings ⚙ > Export and Import > Restore from zip.
    • Follow the directions to restore from the agent.zip file in this repo.

App Engine Deployment & Webhook Configuration

When a new project is created using the Actions Console, it also creates a Google Cloud project in the background.

  1. Delete ActionsAWSHandler.java
  2. Remove the following line from build.gradle:
    • apply from: 'build-aws.gradle'
  3. Download & install the Google Cloud SDK
  4. Configure the gcloud CLI and set your Google Cloud project to the name of your Actions on Google Project ID, which you can find from the Actions on Google console under Settings ⚙
    • gcloud init
    • gcloud auth application-default login
    • gcloud components install app-engine-java
    • gcloud components update
  5. Deploy to App Engine using Gradle:
    • gradle appengineDeploy OR
    • From within IntelliJ, open the Gradle tray and run the appEngineDeploy task.
  6. Back in the Dialogflow console, from the left navigation menu under Fulfillment > Enable Webhook, set the value of URL to https://<YOUR_PROJECT_ID>.appspot.com > Save.

Build for AWS

  1. Delete ActionsServlet
  2. Remove the following line from build.gradle:
    • apply from: 'build-gcp.gradle'
  3. Build the AWS Lambda compatible zip file using the buildAWSZip gradle task: gradle buildAWSZip
  4. Deploy the zip file found at build/distributions/myactions.zip as an AWS Lambda function by following instructions at https://aws.amazon.com/lambda/

Testing this Sample

  • In the Dialogflow console, from the left navigation menu > Integrations > Integration Settings under Google Assistant > Enable Auto-preview changes > Test to open the Actions on Google simulator. OR
  • Type Talk to my test app in the simulator, or say OK Google, talk to my test app to Google Assistant on a mobile device associated with your Action's account.

References & Issues

Make Contributions

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

License

See LICENSE.

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].