Hi there !
I am trying to setup Dex as an Identity provider for a project called ArgoWorklow.
However, despite the provided documentation, I end up with an error message from Dex:
```
level=error msg="Failed to parse authorization request: Invalid client_id (\"my-client-id\")."
```
Despite the fact that earlier in the logs
```
level=info msg="config static client: my-client-id"
```
I have tried first:
Dex v2.26.0
I have a working setup with ArgoCD which use Dex v2.22.0.
Tried this version with no success either.
I have compared the config from each Dex instances and expect the value of the ClientSecret and ClientId , there are no differences (Issuer also but that is implied since they are 2 different instances).
Does anyone have any clue for what is causing this error ?
By the way, the URL in the browser looks like it when failing:
https://my-dex-instance.my.domain.com/auth?client_id=my-client-id&redirect_uri=https%3A%2F%2Fargo-workflow.my.domain.com%2Foauth2%2Fcallback&response_type=code&scope=openid&state=O0Az4WqzXc
Thanks !