I've installed Flask-OIDC and am attempting to authenticate users with my company's service. I'm using a client_secrets.json file, which is being read, parsed and sent correctly for the client_id, client_secret, and other values. I am storing the redirect_uri variable in a line that looks like this:
"redirect_uris": ["https://example.com/_oid_response"],
When the request is sent to the authentication service, it's going out looking like this:
redirect_uri=http%3A%2F%2Fexample.com%2Foidc_callback
Any ideas what's going on here? There's no "oidc_callback" string in any of my app's files, in any of the json, in any of the info I used to register with the authentication provider. Is it not set correctly, or being overwritten by Flask or the Flask-OIDC library somewhere?