Kévin Chalet

Results 270 comments of Kévin Chalet

`IWebAuthenticator` is a very simple stack that will only handle a tiny part of the authorization dance: you must generate and create the authorization request parameters yourself and it won’t...

Well, in their defense, `IWebAuthenticator` is not an OAuth 2.0/OIDC client: it's just meant to handle the browser redirection part and is basically protocol-agnostic 😄

I worked on a prototype of a MAUI host for the OpenIddict client that doesn't use MAUI's `WebAuthenticator` default implementation but directly leverages `IBrowser` - and lifecycle event handlers for...

> Sorry, I read your blog post twice and all this thread, but steel can't realize - may the new client be used for Xamarin forms? Not natively as there's...

> If the sample is correct, and you really need to "AddCore" on the client side, wouldn't it be better to separate the core parts the client and server needs...

> How should I pronounce it? Is it like open addict but open iddict instead?! Yep, that's the right way to pronounce it. As you likely guessed, the name is...

Hey @IgorHrabrov, Thanks for your interest! For the authorization endpoint, the tests are here: - https://github.com/openiddict/openiddict-core/blob/2.0.1/test/OpenIddict.Server.Tests/Internal/OpenIddictServerProviderTests.Authentication.cs#L76-L117 - https://github.com/openiddict/openiddict-core/blob/2.0.1/test/OpenIddict.Server.Tests/Internal/OpenIddictServerProviderTests.Authentication.cs#L805-L866 - https://github.com/openiddict/openiddict-core/blob/2.0.1/test/OpenIddict.Server.Tests/Internal/OpenIddictServerProviderTests.Authentication.cs#L928-L990 And for the logout endpoint: - https://github.com/openiddict/openiddict-core/blob/2.0.1/test/OpenIddict.Server.Tests/Internal/OpenIddictServerProviderTests.Session.cs#L44-L66 - https://github.com/openiddict/openiddict-core/blob/2.0.1/test/OpenIddict.Server.Tests/Internal/OpenIddictServerProviderTests.Session.cs#L121-L172 You'll...

@feededit support will be available in the next preview.

> Setting a destination on the actor object itself doesn't seem to be possible, is there no support for the actor property? OpenIddict itself has always supported the `ClaimsIdentity.Actor` property...

> * Upgrade OpenIddict.EntityFrameworkCore from 3.0.3 to 3.1.1 It's interesting because there was no schema/DB change between those two versions: https://github.com/openiddict/openiddict-core/compare/3.0.3...3.1.1 The only thing that changed between the two that...