oidc-op icon indicating copy to clipboard operation
oidc-op copied to clipboard

An implementation of an OIDC Provider (OP)

Results 28 oidc-op issues
Sort by recently updated
recently updated
newest added

I have an access token which is valid (according to database and introspection) but userinfo rejects it at the same time. The error message is coming from here: https://github.com/IdentityPython/oidc-op/blob/2f81e246ff9ef412f5dc786cd2cfa5dd5fccf9e1/src/oidcop/oidc/userinfo.py#L131-L138 It...

There is a class named `BasicAuthn` which uses validates the username password to authenticate. I wasn't able to find a way to define custom authentication (somethig similar to [https://pyoidc.readthedocs.io/en/latest/examples/op.html](https://pyoidc.readthedocs.io/en/latest/examples/op.html) )....

How do I register a new client with [flask_op example](https://github.com/IdentityPython/oidc-op/tree/master/example/flask_op)? The documentation [https://oidcop.readthedocs.io/en/latest/contents/conf.html#clients](https://oidcop.readthedocs.io/en/latest/contents/conf.html#clients) tells how to update an existing client but I wasn;t able to find how to create a...

Receiving an ```ERR_INVALID_REDIRECT``` on ```https://127.0.0.1:5000/verify/user``` when trying to login with the flask_op example project. Based on the debug log, seems to be related to cookie error? ``` 2022-12-08 09:33:07,680 root...

Hi, This is partly related to UniversitaDellaCalabria/SATOSA-oidcop#20 and UniversitaDellaCalabria/SATOSA-oidcop#21 (which give some more context). When trying to use `pairwise` `sub_type` with oidcop, I was getting the same `sub` values for...

May quite help with troubleshooting - e.g., UniversitaDellaCalabria/SATOSA-oidcop#20

corrected the readme example, please check it.

When trying to use a refresh token after grant (the session) expires, there is an unclear error: `NoneType object has no attribute expires_at` This is because here, the `access_token.expires_at` property...

When attempting to start the flask_op example the following it fails with the following error: ``` ImportError: cannot import name 'TokenAuthenticationError' from 'oidcop.exception' ```