I'm using the Python ASK SDK with Flask and have built the skill fine.
Now, I want to run my own automated tests but for that, I need to disable the signature and timestamp verification in Python ASK SDK.
The docs and source code suggest setting the following parameter to False:
from flask_ask_sdk import skill_adapter
skill_adapter.VERIFY_SIGNATURE_APP_CONFIG = False skill_adapter.VERIFY_TIMESTAMP_APP_CONFIG = False
But that did absolutely nothing. Have also tried setting 'verifiers=None'
skill_response = SkillAdapter( skill=sb.create(), verifiers=None, skill_id=config.SKILL_ID, app=app)
But no joy too.
Anybody got this working? Thank you.
Gypsy