Reputation: 2734
I would like to do the following:
Is that possible with Google actions?
I've scanned https://developers.google.com/actions/ but it is not clear to me whether I can send Intents to my phone. If so, can you provide a pointer?
Thanks in advance,
Marc
Upvotes: 2
Views: 469
Reputation: 11978
There is no direct way to do this. Here are a few ways to get close to the desired behavior:
When an intent is triggered on your Assistant surface, send a push notification to your phone (will require account linking). This push notification can then start an intent.
You can use a helper in the Action to request a new surface with a screen capability. This will not send an intent for your app, but will move the conversation over to a new surface which may make more sense. (This new surface may be able to present a Card with a deeplink into your app)
Upvotes: 2