David Ramos

Results 148 comments of David Ramos

What error are you seeing? There shouldn't be any recent changes that impact whether the examples work.

Not currently. See discussion in https://github.com/ramosbugs/openidconnect-rs/issues/54 and https://github.com/ramosbugs/openidconnect-rs/pull/109. Given the complexity, I think this would make sense as a separate crate built on top of this one, similar to other...

Duplicate of #287

@keelerm84: It looks like 1.0.0 shipped without this change (see [docs](https://docs.rs/launchdarkly-server-sdk/1.0.0/launchdarkly_server_sdk/struct.Client.html#method.flush)). This makes it very hard to use LaunchDarkly for Rust on AWS Lambda and still get analytics... I had...

> How do we replace this to be compatible without `style-src: 'unsafe-inline'` https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/style-src#unsafe_inline_styles? > > CSS-in-CSS vs. CSS-in-JS is not really a variable on the problem faced, at best CSS-in-JS...

closing since I can't reproduce. `cargo test --doc` passes, including on that specific example: ``` Doc-tests oauth2 running 13 tests test src/lib.rs - (line 311) - compile ... ok test...

What `Content-Type` header value is returned? The [spec](https://datatracker.ietf.org/doc/html/rfc6749#section-5.1) is pretty clear that the response body needs to be JSON: > The parameters are included in the entity-body of the HTTP...

`exchange_code()` doesn't currently have access to the ID token due to the way the generic types are defined (see the `openidconnect::TokenResponse` trait). however, even if it did, accessing the (verified)...

Hey @gibbz00, I'm curious about the use case here. Usually signing keys are somewhat long-lived (at least 24 hours, though typically on the order of months with major OIDC providers),...

I can see how this would be confusing, and I agree that the sensible result should be `http://localhost:9025/jwk`. As context, I intentionally didn't use [`Url::join`](https://docs.rs/url/latest/url/struct.Url.html#method.join) because (iiuc) it always replaces...