Hi guys!
Does anybody know how can I create a Client, that has PKCE S256 set and enabled, using Admin Rest API?
Here is the current call that I am using
curl -X POST "http://$KEYCLOAK_URL/auth/admin/realms/company-services/clients" \
-H "Authorization: Bearer $ADMIN_TOKEN" \
-H "Content-Type: application/json" \
-d '{"clientId": "simple-service", "directAccessGrantsEnabled": true, "publicClient": true,
"redirectUris": ["http://localhost:9080/*"]}'
What are the fields I should add in -d '{...}' curl command?
Best regads