The Service Provider generates an AuthnRequest and redirects the user to the IdP. The IdP authenticates and POSTs a SAMLResponse back to the ACS URL.
Enter your IdP's Single Sign-On URL and configure the SP Entity ID. The ACS URL is pre-filled with the Vercel deployment URL.
The SP builds a SAML <AuthnRequest> XML document. It
is then DEFLATE-compressed and base64-encoded per the HTTP Redirect binding
spec (RFC 7519). No signing — educational mode.
Decoded AuthnRequest XML
// Click Generate to build the XML
Encoded SAMLRequest (DEFLATE + base64url)
// Will appear after generation
The full URL sent to the IdP combines the SSO URL with the encoded SAMLRequest query parameter and a RelayState.
// Will appear after generation
After authentication, the IdP will HTTP-POST the SAMLResponse to your ACS URL (/saml/acs). The backend decodes
and displays the full assertion on a new page.