Services/Identity/JWT

From MozillaWiki
< Services‎ | Identity(Redirected from MozillaID/JWT)
Jump to: navigation, search

JSON Web Token (JWT) format

JWT is a simple way to encode signed JSON blobs. It consists of 3 sections:

  • Header
  • Payload
  • Signature

All three sections are serialized and base64-encoded, and separated by dots. See the spec for more information:

[1]