From 66d0c0905338dcfaef2d1e61bf1664df8a02b49e Mon Sep 17 00:00:00 2001 From: Motrotz Date: Sun, 18 Jan 2026 11:05:36 +0100 Subject: [PATCH] Fix JWT token 'sub' claim format The actual token returned by The SSO endpoint and used by Applications, including the official API Explorer at https://developers.eveonline.com/api-explorer has this format. --- docs/services/sso/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/services/sso/index.md b/docs/services/sso/index.md index 8136f73b..c404b8ca 100644 --- a/docs/services/sso/index.md +++ b/docs/services/sso/index.md @@ -206,7 +206,7 @@ The `exp` claim in the JWT token is the expiration time of the token, represente Now that you have verified the JWT Token, you can use the claims belonging to the token to get more information about the access the token has, and for whom it was issued. -The `sub` claim in the JWT token is in the format of `EVE:CHARACTER:` and can be used to get the current character's ID. The `name` claim contains the character's name, and the `scp` claim is an array of scopes that have been granted to this token. +The `sub` claim in the JWT token is in the format of `CHARACTER:EVE:` and can be used to get the current character's ID. The `name` claim contains the character's name, and the `scp` claim is an array of scopes that have been granted to this token. ## Log in with EVE Online buttons