Skip to content

AuthorizationStrategy

public enumAuthorizationStrategy: String

Supported authorization strategies. Mirrors Flutter's Authorization.strategy values.


Members

jwt

case jwt = "JWT"

JWT-based authorization with accessToken and refreshToken. Access token is sent in the Authorization header of each request. Refresh token is used to obtain new access tokens when they expire.

sas

case sas = "SAS"

Shared Access Signature (SAS) token-based authorization. SAS token is sent in the Authorization header of each request. Client is responsible for refreshing the SAS token before it expires.