Reputation: 43
For testing my assistant app, I want to use 'gactions CLI'(https://developers.google.com/actions/tools/gactions-cli)
But, When I try this part
$ gactions test --action_package PACKAGE_NAME --project PROJECT_ID
For example:
$ gactions test --action_package mypackage.json --project my-project-1234567
In this link(https://developers.google.com/actions/tools/gactions-cli)
I can't find what is the 'PACKAGE_NAME (mypackage.json)'.
How can I get my project's 'mypackage.json'???
Where is that file??
Upvotes: 0
Views: 511
Reputation: 50701
The PACKAGE_NAME
field in this case is your actions.json
file, or whatever you have called the Action definition package file. This is where you defined the entry point to your Action and describe how to access the fulfillment server.
Upvotes: 1