Reputation: 1
My action was approved to Production and is now fully deployed but it is still not accessible.
When users try to talk to it Google Assistant just shows an empty screen instead of running my action.
I already tried to reach out to Google Assistant support via https://support.google.com/actions-console/contact/support but they told me they don't handle technical subjects and everything seems OK on their side. =[
Below are some evidences:
The production deploy approved and already rolled out:
Empty action after invoking my action in production:
Has anyone ever seen this kind of behavior?
Any clue or tip at all?
Thanks in advance
Upvotes: 0
Views: 41
Reputation: 173
It looks like your Action's response is returning an "empty" content string for the chat bubble - I can reproduce it with following response with a whitespace in the "text" property (but doesn't work with a completely empty value):
{
"prompt": {
"firstSimple": {
"speech": "<speak><s>bla, bla, bla</s></speak>",
"text": " "
}
}
}
Do you hear any audio output?
Upvotes: 1
Reputation: 50701
There are a number of places to start looking into where the problem might be:
Upvotes: 0