KeycloakClientBundle
KeycloakClientBundle copied to clipboard
The KeycloakClientBundle is bundle for Symfony, designed to simplify Keycloak integration into your application in Symfony and provide additional functionality for token management and user informatio...
I added some attributes to a user on Keycloak: attribute1 = value1 attribute2 = value2 etc. I haven't found any method to map these attributes in the token into an...
As per the README instructions, the current process requires manual configuration by creating a configuration file for the **KeycloakClientBundle** and adding environment variables before installing the package. This can be...
Currently, the JWT token introspection process for tokens encoded with the **HS256 algorithm** is not as robust as desired. To improve the introspection capabilities, the `src/Token/HS256TokenDecoder.php` file needs to be...
Maybe there is still some misconfiguration in my project but I am seeing these two errors. When the user logs out from Keycloak (or their session is killed), a subsequent...
Why is a path to encryption key needed if the key is already provided? What am I missing?
Hello, Right now, we can only declare one URL for Keycloak. This URL is used for redirecting the user and calling the API. In my scenario, I have 2 URLs...
If here https://github.com/mainick/KeycloakClientBundle/blob/main/src/DTO/UserRepresentationDTO.php ```return new self( id: $data['sub'], username: $data['preferred_username'], emailVerified: $data['email_verified'], name: $data['name'], firstName: $data['given_name'], lastName: $data['family_name'], email: $data['email'], enabled: $data['enabled'] ?? null, createdTimestamp: $data['createdTimestamp'] ?? null, updatedAt: $data['updated_at']...
Hello! Thank you for the great bundle. I don't see an option to make request for additional scopes. By default during connect the 'openid, roles, profile, email' scope is requested....
1) i found a bug for count api calls ` $iamAdminClient->users()->count('test', $criteria) => no user found it will return 0 (valid case) ` 2) symfony 6.4 should also work, we...