David Ramos
David Ramos
> I am having the same problem with [www.strava.com](http://www.strava.com) > > I get a valid response when using "application/x-www-form-urlencoded" for the request, which is demanded by the standard according to...
I'm going to close this issue because it's turning into a catch-all of various misuses and/or providers not following the spec, none of which has been traced back to a...
The `openidconnect` crate is open for breaking changes again due to needing to bump its MSRV to 1.57, and I think this would be a good opportunity for the `oauth2`...
Hi @ndrsg, I think this does violate the [spec](https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderConfig), which bases many things on the choice of issuer URL: > OpenID Providers supporting Discovery MUST make a JSON document available...
Hey @trinitroglycerin, for the specific issue you're mentioning (the `url` crate's own canonicalization), it should work if you use `IssuerUrl::new` (passing a string without the trailing slash) instead of `IssuerUrl::from_url`....
^ This is exactly what the first [example](https://docs.rs/openidconnect/3.3.1/openidconnect/#example) in the docs does.
replying to @dtolnay's related comment on https://github.com/serde-rs/serde/pull/1919#pullrequestreview-600321475: > I'll go ahead and close this in the absence of a use case. @dtolnay: a concrete use case is the `zerovec` crate,...
`#[serde(flatten)]` uses `FlatMapDeserializer`, which is one of the internal deserializers that doesn't propagate `is_human_readable` from the underlying deserializer: https://github.com/serde-rs/serde/blob/fb2fe409c8f7ad6c95e3096e5e9ede865c8cfb49/serde_derive/src/de.rs#L2574
Hey @julien-leclercq, Do you know if Auth0 is following the new-ish [RFC 9068: JSON Web Token (JWT) Profile for OAuth 2.0 Access Tokens](https://datatracker.ietf.org/doc/html/rfc9068)? If so, it should be pretty straightforward...
I think the right answer here would be a separate Auth0-specific crate built on top of this one that hides those implementation details. Even if it would be convenient to...