Hi All
I'm having trouble using JWT as a bearer token (issued by Keycloak) when switching to HS256 signing algorithm in the KC UI.
If I configure JWT client to use RS256, or ES256 and others the JWT tokens I get allow my curl client to successfully validate to the KC server:
```
curl -s -X POST \
--data "scope=${SCOPE}" \
--data-urlencode "client_id=${CLIENTID}" \
--data-urlencode "client_secret=${CLIENTSECRET}" \
--data-urlencode "username=${USERNAME}" \
--data-urlencode "password=${PASSWORD}" \
--data-urlencode "grant_type=password" \
https://www.example.com/auth/realms/master/protocol/openid-connect/token
```
As soon as I switch back to HS256 it fails with error:
"parameter client_assertion_type is missing"
What could I be missing in setting up JWT to us HS256 in the KC UI ?
Thanks in advance,
Traiano