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

Using openidconnect to verify a Google Sign-In ID token on a backend server ([Authenticate with a backend server](https://developers.google.com/identity/sign-in/web/backend-auth)). To be used with [Android or iOS native app SDKs and apps...

[Disclaimer: I'm pretty new to Rust, I sincerely hope this all makes sense :-)] I'm using openidconnect-rs in a project where the OpenID Connect scope is configurable; it is read...

I think that there is still an issue using this crate on a WASM target. https://github.com/ramosbugs/openidconnect-rs/pull/58 isn't merged yet. I am using this already, and it works for me. I...

I'm not sure what is happening here, as the "expected" value in the error I'm getting is the same as the one I provided. This is my code snippet: ```rust...

While the crate itself is not affected by RUSTSEC-2020-0159, crates depending on openidconnect still get flagged by `cargo audit` because the issue is still not fixed properly in chrono. Thus...

Hiya, I have been working on deploying an IdP on Cloudflare Workers (`wasm32-unknown-unknown` target) and it is not well supported by `ring`. So I have started working on adding support...

In discovery.rs, I am seeing the following code, which does not allow service_documentation to be a non-empty and non_url at the same time: https://618898.app.netsuite.com/.well-known/openid-configuration has a field "service_documenation" with a...

I want to implement [back-channel logout](https://openid.net/specs/openid-connect-backchannel-1_0.html). For this, the OP sends an so called Logout token to the RP. The RP needs to validate this token. Since it is not...

Hello, thanks for your work It would be great, if library can support dPoP protocol. (OAuth 2.0 Demonstrating Proof-of-Possession ) dPoP is now fairly de-facto standard to bind access token...