An Alexa skill that gives wise quotes.
Step 1Create a Lambda function and upload the source code as a ZIP file.
Note the ARN created to be used later in the developer console.
Create an Alexa skill by filling the skill name and invocation name for the Intent Schema.
{
"intents": [
{
"intent": "GetNewFactIntent"
},
{
"intent": "AMAZON.HelpIntent"
},
{
"intent": "AMAZON.StopIntent"
},
{
"intent": "AMAZON.CancelIntent"
}
]
}
Sample Utterances:
GetNewFactIntent a quote
GetNewFactIntent a wise quote
GetNewFactIntent tell me a quote
GetNewFactIntent tell me a wise quote
GetNewFactIntent give me a quote
GetNewFactIntent give me a wise quote
GetNewFactIntent tell me trivia
GetNewFactIntent tell me a wise trivia
GetNewFactIntent give me trivia
GetNewFactIntent give me a wise trivia
GetNewFactIntent give me some information
GetNewFactIntent give me some wise information
GetNewFactIntent tell me something
GetNewFactIntent give me something
Step 4Paste the ARN in the configuration endpoint and test the skill.
Add publishing info and an image then submit for certification.
Comments
Please log in or sign up to comment.