Angular App - Adding Connection Parameter to Authorize Request
Last Updated:
Overview
Solution
authorizationParams, which is a more structured approach to providing parameters - including the connection parameter as well as any other custom parameters - to Auth0.Here is an example of adding the connection parameter by specifying it in authorizationParams with loginWithRedirect
this.auth.loginWithRedirect({
authorizationParams: {
connection: 'connection_name'
}
});
Related References: