Hi, I'm building a new skill in italian.
The code of the skill is this one:
I followed this link https://developer.amazon.com/docs/hosted-skills/build-a-skill-end-to-end-using-an-alexa-hosted-skill.html in order to use persistence on the skill (see: How do I use session persistence in an Alexa-hosted skill? )
But everytime I tests the 2 intents that use persistence, an error occurs.
On the log I have
on line 58 --> Error handled: Cannot get PersistentAttributes without PersistenceManager
or
on line 36 --> Cannot set PersistentAttributes without persistence adapter!
the package.json is
{ "name": "hello-world", "version": "0.9.0", "description": "alexa utility for quickly building skills", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "author": "Amazon Alexa", "license": "ISC", "dependencies": { "ask-sdk-core": "^2.0.7", "ask-sdk-model": "^1.4.1", "ask-sdk-s3-persistence-adapter": "^2.0.0", "aws-sdk": "^2.326.0" } }
Any idea?