A simple sample showing the visual conversation components available with Actions on Google.
- Use the Actions on Google Console to add a new project with a name of your choosing.
- Choose Actions SDK in the Add actions to your app section. A dialog pops up: leave it open because you will need it for an upcoming step.
- Deploy the fulfillment webhook provided in the
functions
folder using Google Cloud Functions for Firebase:- 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.
- Run
firebase deploy --only functions
and take note of the endpoint where the fulfillment webhook has been published. It should look likeFunction URL (conversationComponent): https://us-central1-YOUR_PROJECT.cloudfunctions.net/conversationComponent
- Update the action package,
action.json
, replacing the placeholder valueYOUR_ENDPOINT_URL
with the value for Function URL obtained from the previous step. - Install the gactions CLI if you haven't already.
- Go back to the Actions console, copy the command shown in the Actions console, replace
PACKAGE_NAME
with "action.json" and execute it in a shell. The final command should look likegactions update --action_package action.json --project <YOUR_PROJECT_ID>
- Click OK in the Actions console to dismiss the Use Actions SDK to add actions to your Assistant app dialog.
- Open the Simulator in the Actions console.
- 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.
For more detailed information on deployment, see the documentation.
- Use the Actions on Google Console to add a new project with a name of your choosing.
- Under Build a custom app, click BUILD in the Dialogflow box and then click Create Actions on Dialogflow.
- Click Save to save the project.
- Click on the gear icon to see the project settings.
- Select Export and Import.
- Select Restore from zip. Follow the directions to restore from the
agent.zip
file in this repo. - Deploy the fulfillment webhook provided in the
functions
folder using Google Cloud Functions for Firebase:- Create a Firebase project in the Firebase Console if you don't have one already.
- Follow the instructions to set up and initialize Firebase SDK for Cloud Functions. Make sure to reply "N" when asked to overwrite existing files by the Firebase CLI.
1.Run
firebase deploy --only functions
and take note of the endpoint where the fulfillment webhook has been published. It should look likeFunction URL (conversationComponent): https://us-central1-YOUR_PROJECT.cloudfunctions.net/conversationComponent
- 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. - Select Integrations from the left navigation menu and open the Settings menu for Actions on Google.
- Click Test.
- Click View to open the Actions on Google simulator.
- Type
Talk to my test app
in the simulator, or sayOK Google, talk to my test app
to any Actions on Google enabled device signed into your developer account.
For more detailed information on deployment, see the documentation.
- Actions on Google documentation: https://developers.google.com/actions/.
- If you find any issues, please open a bug here on GitHub.
- Questions are answered on StackOverflow.
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.
Actions on Google Developers Community on Google+ https://g.co/actionsdev.