Kévin Chalet

Results 270 comments of Kévin Chalet

Improvements are tracked by https://github.com/openiddict/openiddict-core/issues/1555.

Thanks for your PR 👍🏻 It's worth noting that this fix introduces a behavior change: providers that natively support translating `DateTime.UtcNow` in queries will no longer do so. Before we...

May I suggest naming it `IAuthorizationRequirementData` in case you'd come with a similar design for other areas like CORS in the future?

@Icestorm0141 this sample app doesn't use .NET Core (`dnxcore50` or `netstandardapp1.5` in the recent builds, that will be replaced by `netcoreapp1.0` in the near future) but OpenIddict fully supports it....

@Icestorm0141 I meant with the official OpenIddict samples, not this repo. Since I have no write access for this repository, @capesean will have to fix it :smile:

@Icestorm0141 I just sent a PR that should fix all the existing issues: https://github.com/capesean/openiddict-test/issues/7.

@Myrmex FYI, you can now find a password flow sample in the openiddict-samples repo: https://github.com/openiddict/openiddict-samples/tree/master/samples/PasswordFlow

Indeed, all the "official" samples use the default token format (which provides both integrity and confidentiality, since it relies on authenticated encryption). That said, [the access token format is supposed...

@jdosullivan when returning an access token, OpenIddict also returns an `expires_in` property, that contains the remaining token lifetime (in seconds). You can read https://tools.ietf.org/html/rfc6749#section-5.1 for more information.

> I know the time of creation You know it: it's when you receive the token response.