My http scheme when initiating the callback is somehow using http instead of https
I’m getting The URL "http://some_domain/complete/auth0?redirect_state=some_string" is not in the list of allowed callback URLs.
Sure, setting the callback url in setting page to use http works, but I want to know why it’s using http in the first place and if it’s possible for me to use https instead
I’m using Django 2.0.4 and my setting looks like
LOGIN_URL = "/login/auth0"
LOGIN_REDIRECT_URL = "/some/url"
AUTH_AUTH0_DOMAIN=some_auth0_name.auth0.com
I don’t think anything else would affect the url. Is there a way for auth0 to call https instead of http?