...
JWTs have three sections: a header, payload (containing a claim set), and signature. The header and payload are JSON objects, serialized to UTF-8 bytes, then encoded using base64url encoding. Note that ClearBlade has strict JWT base64url encoding requirements, unlike Google.
The JWT's header, payload, and signature are concatenated with periods (.
). As a result, a JWT typically takes the following form:
...