Skip to content

Commit

Permalink
Update urls.py
Browse files Browse the repository at this point in the history
Added verify_signature=False to SkillAdapter initialization as a workaround for a bug mentioned here: alexa/alexa-skills-kit-sdk-for-python#202
  • Loading branch information
sebadasta authored Oct 17, 2022
1 parent b48cfc4 commit cb6c7f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions trainapp/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from django_ask_sdk.skill_adapter import SkillAdapter

my_skill_view = SkillAdapter.as_view(
skill=skill)
skill=skill,verify_signature=False)

#path('path', method.func, name='html file')
urlpatterns = [
Expand All @@ -34,4 +34,4 @@
path('tw_feed', views.tw_feed, name ='tw_feed'),
path('alexa_skill', my_skill_view, name='index'),

]
]

0 comments on commit cb6c7f8

Please sign in to comment.