openidconnect-rs icon indicating copy to clipboard operation
openidconnect-rs copied to clipboard

OpenID Connect Library for Rust

Results 70 openidconnect-rs issues
Sort by recently updated
recently updated
newest added

Fixes: #168 Relies on: https://github.com/ramosbugs/oauth2-rs/pull/275 https://github.com/ramosbugs/openidconnect-rs/commit/f95b00fe3a5c1e8e9f6d8f723e93dadb052eaf0b needs to be removed once the oauth2 PR released. Marking PR as draft until it's done. ✌️

First of all thanks for providing this crate! I'm trying to upgrade from the v3.5 version to the v4 alpha, but I'm running into some issues. I am refactoring: ```rust...

Placed behind a `schemars` feature flag. Draft until https://github.com/ramosbugs/oauth2-rs/pull/279 gets merged.

Related to #153. Thanks!

Relates to #155. Thank you again!

Resolves #122. Thank you very much for your work on this crate!

Might be related to: #277 ```rust #[test] fn temp() { let base = "http://localhost:9025"; let suffix = "/jwk"; let expected_join = format!("{}{}", base, suffix); let url = Url::parse(base).unwrap(); let actual_url_join...

From the [root module example:](https://docs.rs/openidconnect/4.0.0-alpha.1/openidconnect/index.html#example) ```rust let id_token_verifier = client.id_token_verifier(); let claims = id_token.claims(&id_token_verifier, &nonce)?; // Verify the access token hash to ensure that the access token hasn't been substituted...

Two things that I'm trying to achieve: Creating the signing keys when starting a server. And being able to have access to the original signing key so that it can...