Hello,
When I test my skill in Lambda and on the Amazon Development Portal everything appears to check out and the test is successful. When i say the invocation name to get Alexa to confirm my test, she does not recognize the skill and immediately ends the session. Any idea why this is happening? Below are the results to my tests:
Lambda:
{ "version": "1.0", "sessionAttributes": {}, "response": { "outputSpeech": { "type": "PlainText", "text": "Test" }, "shouldEndSession": true } }
Amazon Development Portal:
{ "version": "1.0", "response": { "outputSpeech": { "type": "PlainText", "text": "Test" }, "shouldEndSession": true }, "sessionAttributes": {} }
The only thing additional that shows up in the Amazon Development portal successful test id the "sessionAttributes":{}. Is this possibly what is causing Alexa not to answer my request?