Endpoint: GET /sso/login.php
| Parameter | Required | Description |
client_key | Yes | Your SSO client key. |
client_secret | Yes | Your client secret. |
token | Yes | Token from the authorization step. |
Example SSO request
GET https://www.salesvu.com/sso/login.php?client_key=YOUR_CLIENT_KEY&client_secret=YOUR_CLIENT_SECRET&token=GENERATED_ACCESS_TOKEN
If credentials and token are valid, the user is logged into SalesVu and redirected to the dashboard. Invalid requests return an error.
Access token lifetime
SSO access tokens are valid for 1 year (365 days / 8760 hours) from the time they are issued during authorization.
- After a token expires (or is revoked),
/sso/login.php cannot complete Single Sign-On with that token.
- The user must complete
/sso/authorize.php again to obtain a new access token, then retry SSO login.
- If SalesVu detects an expired or revoked token on login, the user is redirected back to the authorization page with a message to sign in again.
- Your application should also treat SSO login failure as a signal to restart the authorize flow (defense in depth).