AuthorizationStrategy¶
enumAuthorizationStrategy: Enum<AuthorizationStrategy>
Supported authorization strategies. Mirrors Flutter's Authorization.strategy values.
Members¶
JWT¶
val JWT:AuthorizationStrategy
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¶
val SAS:AuthorizationStrategy
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.