Is it possible to trigger social connection SSO outside the Universal login page?

Hello.
We are trying to build our sign-up page, and we want to put social connection buttons there. Clicking on them is expected to lead to the selected provider login page. Is it possible to trigger social connection SSO outside the Universal login page? Maybe there is an option to force chosen social provider login for the Universal Login Page?

Hi @e.kopa,

Welcome to the Auth0 Community!

Yes, this is possible. You can force authentication with a Social connection by specifying the connection query parameter in the login request.

Here is an example with using Google:

https://{yourDomain}/authorize?
    response_type=code&
    client_id={yourClientId}&
    redirect_uri={https://yourApp/callback}&
    scope={scope}&
    state={state}&
    connection=google-oauth2

Please let me know if you have any further questions. I’d be happy to help!

Thanks,
Rueben

1 Like

Hi @rueben.tiow,

Thank you so much. That is what I was looking for!

1 Like

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