When trying to initialize flask-oidc in my application, I am seeing this error:
When debugging, I can see in the source code for flask-oidc that the dict recieved from my client_secrets.json file is being converted to a list, then below the code is trying to access 'issuer' from that list.
Since you cannot get key 'issuer' from a list of values, this is breaking the application.
When trying to initialize flask-oidc in my application, I am seeing this error:
When debugging, I can see in the source code for flask-oidc that the dict recieved from my client_secrets.json file is being converted to a list, then below the code is trying to access 'issuer' from that list. Since you cannot get key 'issuer' from a list of values, this is breaking the application.
The application is using python 3.6.