AuthenticationFlow
Home > @gooddata/sdk-backend-spi > AuthenticationFlow
AuthenticationFlow type
Implementation of different backends MAY indicate through this structure where to redirect the browser in order to start authentication flow.
Signature:
export type AuthenticationFlow = {
loginUrl: string;
returnRedirectParam: string;
};
Remarks
The returnRedirectParam
is the name of the query parameter that the application should set when redirecting. The value of the query parameter is the return URL where the browser should return after successful authentication.