Alokai
You are reading the documentation for v7.x and earlier, which is no longer the latest version. Switch to v8.x

OAuthUserTokenResponse

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

export 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