openidconnect-rs
openidconnect-rs copied to clipboard
OpenID Connect Library for Rust
The current documentation showcases how to communicate with the Authentication Provider and verify the responses, but it doesn't mention a lot of how to build an authentication flow on it....
Hello, As stated in the title, the `/usreinfo` endpoint returns a stringified epoch timestamp... https://auth0.com/docs/api/authentication#user-profile If you have any idea on how I could work around this other than hand...
Hello! I am in a multiple frontend applications + API + Auth0 for authenticating all those setup. Basically what I would like to do is to enable my API to...
This is a follow up on https://github.com/ramosbugs/oauth2-rs/pull/232, so we don't have to have the oauth2 dependency directly mentioned when using this feature. Edit: A new version of oauth2 needs to...
hi, hope it's ok to ask more general questions here. I have an existing application with front/backend that relies on okta for authentication, I didn't write this app but I...
I am trying to implement SSO for a leptos app I am making but I am stuck at the code exchange phase. I've tried a lot of things but am...
https://docs.rs/openidconnect/3.2.0/openidconnect/struct.IdTokenClaims.html#method.name (aka the displayname) can be localised. However, due to the stronglytyped API it's difficult to see "how" to access this via https://docs.rs/openidconnect/3.2.0/openidconnect/struct.LocalizedClaim.html. For example, if a locale doesn't exist,...
This PR includes minimal support for clientside DPoP, namely the ability to generate DPoP headers using this crate. Related issue: #54
Partly a question if there's any reason why the API requires owned strings for constructors and such. ```rust .add_scope(Scope::new("read".to_string())) .add_scope(Scope::new("write".to_string())) ``` Could then become: ```rust .add_scope(Scope::new("read")) .add_scope(Scope::new("write")) ``` And the...
Writing an authorization server which needs to be able to parse `CoreResponseType` from an HTTP query string 😊