example-oidc-server
example-oidc-server copied to clipboard
Example for OpenID Connect 1.0 Server for Authlib.
To my understanding, when implementing OIDC, you need a JWKS endpoint. (A discovery endpoint would also be pretty helpful). Perhaps I'm missing something, but this example doesn't seem to provide...
I believe that the _requirements.txt_ file has incompatible versions of libraries. I already used this example in the past, however, right now I get an error when I run the...
from /oauth/token {'token_type': 'Bearer', 'access_token': '4QKtq6DDbPx4eGZzd2c4dmJ0FDQhTdsZ7fWEOPE57w', 'expires_in': 864000, 'scope': 'demo'}
- Updates Authlib support from 0.13 -> 1.0.1, closes issue #15 - JWT settings in `settings.py` now implemented - Fix blueprint code and added more comments
Hi @lepture , I've tried upgrading my code base to authlib 1.0 and had problem at various stages. I am pretty sure I can contribute some patches for this, but...
This makes it massively easier to integrate with existing oidc clients. After getting the the `jwks_uri` endpoint to work as described in #2 I added this handler to get auto...
I followed the instructions to get the code, but, when i send the code to the authorization server to get an access token, i got a error "invalid_client" . It's...
error
`bp = Blueprint(__name__, 'home')` python3.8 win10 will report error,‘Blueprint(‘home’, __name__)’ will be OK
Change at line 11 will prevent an error in python 3.9: ` raise ValueError("'name' may not contain a dot '.' character.") ValueError: 'name' may not contain a dot '.' character.`...
Added some tests that more or less show a login sequence.