Use both Passwordless and Password in Universal Login

Hi, I’m trying to find a way to use both Passwordless & password options within the New Universal Login experience, is that possible or do we have to build it using Embedded Login (which if I’m not mistaken is less robust compared to the former option) ?

Hi @spuri,

Welcome to the Auth0 Community!

Yes, using Passwordless and password options is possible with the New Universal Login experience.

To do so, you must append the connection query parameter to your request.

For example:

https://{yourDomain}/authorize?
    response_type=code&
    client_id={yourClientId}&
    redirect_uri={https://yourApp/callback}&
    scope={scope}&
    audience={apiAudience}&
    state={state}&
    connection={connection_name}

Our Passwordless with New Universal Login documentation mentions this.

Let me know if you have any questions.

Thanks,
Rueben

Doing so allows our users to be able to log in with code (lets say email connection), but takes away the option to login with password, is it always going to be an either or with Universal Login ?

Hi @spuri,

Thanks for the reply.

Yes, that’s correct. You will have to decide on either passwordless or non-passwordless options.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.