We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If a no storm name is provided, an error gets thrown. Need more robust handling of this query to check that a name has been provided.
"request": { "type": "CanFulfillIntentRequest", "requestId": "b7cce0ed-cb3b-4cbb-97c6-bc8a22e98c19", "timestamp": "2018-07-21T11:08:20Z", "locale": "und", "intent": { "name": "GetStormDetail", "slots": { "Storm": { "name": "Storm" } } }, "dialogState": "STARTED" }
The text was updated successfully, but these errors were encountered:
The way that the function is written it currently expects a "value" attribute - see example below.
"request": { "type": "CanFulfillIntentRequest", "requestId": "b7cce0ed-cb3b-4cbb-97c6-bc8a22e98c19", "timestamp": "2018-07-21T11:08:20Z", "locale": "und", "intent": { "name": "GetStormDetail", "slots": { "Storm": { "name": "Storm", "value": "Katrina" } } }, "dialogState": "STARTED" }
Sorry, something went wrong.
No branches or pull requests
If a no storm name is provided, an error gets thrown. Need more robust handling of this query to check that a name has been provided.
"request": {
"type": "CanFulfillIntentRequest",
"requestId": "b7cce0ed-cb3b-4cbb-97c6-bc8a22e98c19",
"timestamp": "2018-07-21T11:08:20Z",
"locale": "und",
"intent": {
"name": "GetStormDetail",
"slots": {
"Storm": {
"name": "Storm"
}
}
},
"dialogState": "STARTED"
}
The text was updated successfully, but these errors were encountered: