Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialKarla Reyna
138 PointsCreating an intent: Amazon Alexa Skills
I copied and pasted this into the intent side of Amazon Alexa skills :
"intent": "GetDefinition", "slots": [
{
"name": "Term",
"type": "LIST_OF_TERMS"
}
]
},
{ "intent": "AMAZON.HelpIntent" },
{ "intent": "AMAZON.StopIntent" },
{ "intent": "AMAZON.CancelIntent" }
and then this shows up: Error: There was a problem with your request: Unknown slot type 'LIST_OF_TERMS' for slot 'Term' What do I do? :(
1 Answer
Steven Parker
231,184 PointsYou probably just haven't created the custom slot type yet. That's covered in the next video.