I’m including some custom parameters in my call to loginWithRedirect.
I’m using the sample app.
const options = {
authorizationParams: {
redirect_uri: window.location.origin,
invitation: <invite>,
organization: <org>,
screen_hint: 'signup',
customParam: <custom_param_value>,,
},
};
await auth0Client.loginWithRedirect(options);
I expected the event of the onExecutePreUserRegistration to have the request.body populated with the custom parameters as described in the documentation. Actions Triggers: pre-user-registration - Event Object (auth0.com). However when I use the web task logs extension to print out the event object the body is empty. Am I interpreting the documentation for this action incorrectly?