SSO Integration
Configure JWT-based Single Sign-On for enterprise-grade security
What you'll get
Enterprise Security
Use your existing identity provider's security policies and authentication
Seamless Access
Users automatically log in with their existing credentials
JWT Authentication
Secure token-based authentication with custom secret keys
How it works
1. User Authentication
User authenticates through your identity provider
2. JWT Generation
Your system generates a JWT token with user information
3. Saylo Login
User is automatically logged into Saylo using the JWT token
Setup
Access SSO settings
Go to your Saylo dashboard, navigate to Settings → Integrations, and find the SSO section.
Configure settings
Set your custom login URL and JWT secret key in the SSO configuration.
Implement endpoint
Create an authentication endpoint that generates JWT tokens and redirects to Saylo.
Example implementation
JWT Payload
{ "email": "user@example.com", "name": "John Doe", "avatar_url": "https://...", "iat": 1640995200, "exp": 1641081600 }
Saylo SSO Endpoint
https://saylo.io/api/v1/[project]/sso?jwt=TOKEN&redirect_to=URL
Ready to get started?
Configure SSO for your Saylo workspace and streamline user authentication.
Configure SSO