alfresco-ng2-components/docs/core/services/jwt-helper.service.md
Francesco Corti e64eee90af [ADF-4656] Release note for ADF 3.3 in draft. (#4857)
* [ADF-4658] Release note for ADF 3.3.

* License info update.

* Version index issue.

* release note
2019-06-18 10:01:52 +01:00

1.1 KiB

Title, Added, Status, Last reviewed
Title Added Status Last reviewed
JWT helper service v3.0.0 Active 2019-01-09

JWT helper service

Decodes a JSON Web Token (JWT) to a JavaScript object.

Class members

Methods

  • decodeToken(token: any): Object
    Decodes a JSON web token into a JS object.
    • token: any - Token in encoded form
    • Returns Object - Decoded token data object
  • getValueFromLocalAccessToken(key: string)
    Gets a named value from the user access token.
    • key: string - Key name of the field to retrieve
  • getValueFromToken(accessToken: string, key: string)
    Gets a named value from the user access token.
    • accessToken: string -
    • key: string -

Details

JWT is a standard for sending data securely that ADF uses during the OAuth2 authentication procedure. See the JWT website for full details of the standard and its uses.

See also