How to save user response when feedback Intent gets triggered

49 Views Asked by At

In alexa skill when user response does not match with any utterance or any set value for custom slot then Amazon.FallbackIntent gets triggered .... I want to save that user response in in session attributes how can i do that explain by using python ask SDK. . .

I tried to capture that user response with input_transcript bt is not working....

1

There are 1 best solutions below

3
Anrufliste On

An Alexa Skill is not getting a transcript. The Fallback Intent is not different here when looking from an individual invocation as the Skill SDK is doing it.

But in the console it helps you with aggregated data:

You can access aggregated and anonymized utterances with the Intent Request History API or the Intent History page in the developer console. This gives you a view into how users interact with your skill. You can view the utterances and the intents that Alexa triggered.

See https://developer.amazon.com/en-US/docs/alexa/custom-skills/standard-built-in-intents.html#amazonfallbackintent-and-intent-request-history for more information