Alokai

OAuthUserTokenResponse

Interface of the response returned by endpoints dealing with customer access tokens (e.g. OAuthUserAuthorization, OAuthUserTokenRefresh )

interface OAuthUserTokenResponse {
	token: OAuthToken;
	tokenCookieOptions: CookieOptions;
}

Properties

NameRequiredTypeDescription
tokenRequiredOAuthTokenResponse from authorization server when user or application is authorized.
tokenCookieOptionsRequiredCookieOptionsObject holding options for the vsf-sap-token cookie - either the default ones or defined by the user in the middleware.config.js.

Referenced Types

On this page