Alexa Skill Development using flask-ask and ngrok

后端 未结 4 1079
情书的邮戳
情书的邮戳 2021-01-02 07:09

I\'m trying to begin developing a skill for alexa using flask-ask and ngrok in python. Following is my code:

from flask import Flask
from flask_ask import As         


        
4条回答
  •  無奈伤痛
    2021-01-02 07:47

    Ran into the same issue, you can fix it by downgrading cryptography to anything less than 2.2 for me.

    pip install 'cryptography<2.2'
    

    rpg711 gets all the credit (see comments the on original post)

提交回复
热议问题