Django - Social Auth(请求 URL 显示的是 http 而不是 https)
Django - Social Auth (Request URL is showing http instead of https)
我在我的应用程序中集成了 SSL 证书,我的站点中有 https,但在 django 社交身份验证中,请求 URL 仅适用于 http。
我知道 Twitter 不允许来自 http 的请求。 Link : http://humbusy.tk/social-auth/login/twitter/
我的网站有 https 但请求是 http 。为什么?我该如何解决?谢谢.
因为你的 urls.py
长相如下。
urlpatterns = [url(r'social-auth/', include('social_django.urls', namespace='social')) ]
您已在 Twitter 应用程序配置中添加回调 URL,如下所示。
https://humbusy.tk/social-auth/complete/twitter/
http://humbusy.tk/social-auth/complete/twitter/
我在我的应用程序中集成了 SSL 证书,我的站点中有 https,但在 django 社交身份验证中,请求 URL 仅适用于 http。 我知道 Twitter 不允许来自 http 的请求。 Link : http://humbusy.tk/social-auth/login/twitter/
我的网站有 https 但请求是 http 。为什么?我该如何解决?谢谢.
因为你的 urls.py
长相如下。
urlpatterns = [url(r'social-auth/', include('social_django.urls', namespace='social')) ]
您已在 Twitter 应用程序配置中添加回调 URL,如下所示。
https://humbusy.tk/social-auth/complete/twitter/
http://humbusy.tk/social-auth/complete/twitter/