-
Notifications
You must be signed in to change notification settings - Fork 3k
Description
When you try to read body through Claim Information Point the result is Null Pointer Exception.
When you add the following to your application.properties file:
quarkus.keycloak.policy-enforcer.claim-information-point.claims.claim-from-body={request.body}
And execute the post request against the endpoint /api/auth-entry
The result is:
ERROR: HTTP Request to /api/auth-entry failed, error id: d73bb86a-aa3e-40bc-9497-7683a11b1a92-1
java.lang.NullPointerException
at io.quarkus.keycloak.pep.VertxHttpFacade$1.getInputStream(VertxHttpFacade.java:124)
at org.keycloak.adapters.authorization.util.RequestPlaceHolderResolver.resolve(RequestPlaceHolderResolver.java:107)
at org.keycloak.adapters.authorization.util.PlaceHolders.parsePlaceHolders(PlaceHolders.java:93)
at org.keycloak.adapters.authorization.util.PlaceHolders.resolve(PlaceHolders.java:45)
Here is the Sample Project
You can create the quarkus realm from src/test/resources/keycloack/quarkus-realm.json file.
Then you can retrieve the token for user (alice/alice) as described here: https://quarkus.io/guides/security-keycloak-authorization
Then you have to put the token in org.otaibe.enforcer.claim.can.not.read.body.web.controller.RestControllerTest#TOKEN
If you execute the test org.otaibe.enforcer.claim.can.not.read.body.web.controller.RestControllerTest#testPostEndpoint
Then you will receive the NPE