Add standard claims to access token

Hello.

Is there a way to add the standard claims to the access token? I do not want to add any custom claims, just some of the standard claims.

The only way I have found so far is to namespace them and add them as a custom claim.
I understand the need for keeping the access token as small as possible, but then It should also be possible to add some of the standard claims not to increase the size more than needed.

I just want to add the name and email_verified to the access token.

Hi @hamnis,

Welcome to the Auth0 Community Forum!

Have you seen the /userinfo endpoint? This is typically how user profiles are accessed with an access token. An id token will provide the name claim. Otherwise you will need to add a custom claim.

Hope this helps,
Dan

1 Like

@hamnis,

At the suggestion of @mathiasconradt (thanks for the heads up), I tested adding the email_verified claim to the id token in a rule, and it works successfully.

I cannot say the same for the access token unfortunately.

Good luck!
Dan

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.