https for localhost:8080

后端 未结 4 921
误落风尘
误落风尘 2021-02-05 10:58

I am trying to develop a facebook app written in Python running on Google App Engine, so i need to make my http://localhost:8080 to https://localhost:8080 since facebook is aski

4条回答
  •  抹茶落季
    2021-02-05 11:29

    Have a look here . I think this will answer your question

    Add this to your app.yaml

    handlers:
    
    - url: #url
      script: #script
      login: required
      secure: always
    

    more reference here

提交回复
热议问题