[RESOLVED] ERROR invalid_client (narrowed to endpoint_auth_signing_alg error)

Any idea why I get
The OAuth2 request resulted in an error.

  • Error: invalid_client
  • Description: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method)
  • Hint: The requested OAuth 2.0 Client does not exist.

using
http://127.0.0.1:4444/oauth2/auth?audience=&client_id=auth-code-client&redirect_uri=https://openidconnect.net/callback&response_type=code&scope=openid+offline&state=pnaqqipwwpbrdkosbqflsnya
after doing
docker-compose -f quickstart.yml exec hydra hydra clients create --endpoint http://127.0.0.1:4445 --id auth-code-client --secret secret --grant-types authorization_code,refresh_token --response-types code,id_token --scope openid,offline --callbacks http://127.0.0.1:5555/callback

EDIT:
Maybe Iam getting somewhere, i found out that hydra complains about endpoint_auth_signing_alg missing in Client[] *, it does this when starting the flow or even GET /clients which in turn returns 500 generic error

EDIT:
Resolved, I had wrong hydra version in my compose

1 Like