python 3.x - Flask-OIDC redirect_uri value being overwritten somewhere? -
i've installed flask-oidc , attempting authenticate users company's service. i'm using client_secrets.json file, being read, parsed , sent correctly client_id, client_secret, , other values. storing redirect_uri variable in line looks this:
"redirect_uris": ["https://example.com/_oid_response"],
when request sent authentication service, it's going out looking this:
redirect_uri=http%3a%2f%2fexample.com%2foidc_callback
any ideas what's going on here? there's no "oidc_callback" string in of app's files, in of json, in of info used register authentication provider. not set correctly, or being overwritten flask or flask-oidc library somewhere?
Comments
Post a Comment