Hello,
I am using @auth0/auth0-react to login on my webapp with Twitter.
// Using this:
loginWithRedirect: (
options?: RedirectLoginOptions<AppState>
) => Promise<void>;
// With these autorization params:
{
audience: `https://.../api/v2/`,
redirect_uri: window.location.origin,
scope:
"openid email profile read:current_user update:current_user_identities",
connection: "twitter",
};
Everything works fine but when a new user logs in (and in consequence creates the profile on auth0), two steps are required to complete the signup.
I am wondering if there is a way to avoid having the user go through these two steps.
After pressing login, first the user sees the following page:
After logging in with Twitter, the user is presented the following page:
Is it possible? if the account is being created, I don’t understand why the need for the second modal.
Thanks,
Claudio

