Keycloak.Net icon indicating copy to clipboard operation
Keycloak.Net copied to clipboard

C# client for Keycloak 6.x

Results 32 Keycloak.Net issues
Sort by recently updated
recently updated
newest added

Hi, is it possible to remove the /auth prefix from the base url?

Upgraded to net-6.0 Upgraded Flur Library Removed compatibility for .net classic Removed compatibility for .net standard 1.x

I can not find any documentation to use this library. How can find it??

fixes #55 this will also update from .net standard 1.4 to .net standard 2.0 and to .net461 as flurl 3.2.0 requires it. It contains also a docker-compose file for automatic...

According to the docs (https://www.keycloak.org/docs-api/17.0/rest-api/index.html#_getuserscount) you can a) specify no query parameters to return the count of all users, b) specify the `search` query parameter to filter by name email...

When working with the protocol mappers I encounter a severe bug in the JSON implementation. This class Keycloak.Net.Models.ProtocolMappers.Config should be changed to Dictionary Per the docs https://www.keycloak.org/docs-api/5.0/rest-api/index.html#_protocolmapperrepresentation this attribute it's...

Hi, Can you please switch Flurl unsigned package? If you like to have your package signed you can also create Signed an Unsigned version of nuget package Thank's, Evegeny

When i request information about a client using `client.GetClientsAsync(realm, clientId)` i get back multiple `Client` instances, if i then drill down into one and access one `ProtocolMappers`, and check the...

``` var result = await url .AppendPathSegment($"/auth/realms/{realm}/protocol/openid-connect/token") .WithHeader("Content-Type", "application/x-www-form-urlencoded") .PostUrlEncodedAsync(new List { new KeyValuePair("grant_type", "client_credentials"), new KeyValuePair("client_secret", clientSecret), new KeyValuePair("client_id", "admin-cli") //