JWT

public struct JWT : Equatable

Represents a JSON Web Token object. Use this struct to get and verify JWT tokens. If the user authorizes your app with the .openID permission, a signed ID token will be issued together with an access token. The LINE SDK verifies JWT tokens for you.

  • The payload section of the JWT object.

    Declaration

    Swift

    public let payload: Payload
  • Represents the payload section of a JWT object. Use the exposed properties to get claims from the payload. Use the subscript method to get any unexposed values.

    See more

    Declaration

    Swift

    public struct Payload