How to skip aut0 login page and directly redirect in to social login site?

Hey there!

It’s doable, you need to pass the connection parameter in the /authorize URL

https://[tenant].auth0.com/authorize?
audience=[API Identifier]
&scope=openid+profile+email
&response_type=token
&client_id=[Client ID]&connection=[Connection name]
&redirect_uri=[Redirect URI]
&nonce=123
2 Likes