We need to create a SAML connection in our application, for a certain client. This client is the IdP - they have their own user management system, login screens and all. in that case we, meaning auth0, is the SP.
We managed to do it and the login goes smoothly, but: we get two authorization screens on the first login. one, is a page with the ‘Continue’ buttons, like the below. second, is an App authorization screen on the first login
we need to remove these, since users of the client dont need to pass through all that. they would click a link, login (if they havent done so before) and then go to our web application.
Absolutely. Once users click on a login button / login link, you can direct them to the SAML login screen (without this intermediate Auth0 screen) by providing the connection param to the /authorize requests:
GET https://{yourDomain}/authorize?
response_type=code|token&
client_id={yourClientId}&
connection=connection name&
redirect_uri={https://yourApp/callback}&
state=STATE
Please let us know if you have more questions about that!