DEV Community

Rob Earlam for Sitecore

Posted on • Originally published at robearlam.com on

Sitecore Identity Service - Max Client Secret Length

So in the process of developing the new MVP site, we ran into a couple things that other developers might encounter. So I wanted to start covering some of them here. The first of those are the rules about the Identity Server Client Secret.With the release of Sitecore 10, a new Sitecore CLI was released. This allows for headless authentication when deserialising content automatically, say during a CI process. You can achieve this by using a command like so:

dotnet sitecore login --client-credentials true --auth https://mvp-id.sc.localhost/ --cm https://mvp-cm.sc.localhost/ --allow-write true --client-id "<<client_id>>" --client-secret "<<token>>"
Enter fullscreen mode Exit fullscreen mode

Now I was trying to use a very long Token value for this. I originally started with a 128 char token, but the authentication kept failing with the following error

Error while getting client credentials token: invalid_client
Enter fullscreen mode Exit fullscreen mode

It took a bit to figure out, but the key to this became clear once I viewed the logs for my ID server instance, I did this using the following command:

docker logs mvp-site_id_1
Enter fullscreen mode Exit fullscreen mode

After wading through the logs I saw the following entry that made it all very clear!

IdentityServer4.Validation.PostBodySecretParser [Error] Client secret exceeds maximum length.
Enter fullscreen mode Exit fullscreen mode

So after some trial and error with tokens of different lengths, it turns out that the Max Length supported is 101 chars. So when creating Client Secrets for Sitecore 10 you need to make sure that you stay under that length!

Top comments (0)