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