Namespace NFX.IO.FileSystem.GoogleDrive.Auth
Classes
JsonWebToken
JWT (https://developers.google.com/identity/protocols/OAuth2ServiceAccount).
A JWT is composed of three parts: a header, a claim set, and a signature. The header and claim set are JSON objects. These JSON objects are serialized to UTF-8 bytes, then encoded using the Base64url encoding. This encoding provides resilience against encoding changes due to repeated encoding operations. The header, claim set, and signature are concatenated together with a period (.) character.
{Base64url encoded header}.{Base64url encoded claim set}.{Base64url encoded signature}