https for localhost:8080

后端 未结 4 923
误落风尘
误落风尘 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:28

    From the docs:

    The development web server does not support HTTPS connections. It ignores the secure parameter, so paths intended for use with HTTPS can be tested using regular HTTP connections to the development web server.

    You can star issue 960 to request that support be added. Until then, my advice would be to run Apache or lighttpd as a proxy to the development server, and enable HTTPS on the front-end service only.

提交回复
热议问题