The audience for this article is strictly for integration partners. The information contained here is not applicable to most of our general population.
If you have a SaaS based application and would like to authenticate your users with CAVO, we can accommodate this through a JWT. When we receive this token, we evaluate the contents and verify the issuer and secret. Once verified, your user is granted access to the Cavo application without being required to enter their credentials manually.
Details on how this token is designed: https://github.com/auth0/node-jsonwebtoken
{
secret: 'shhhhhhared-secret',
issuer: 'https://yourapp.com/'
}
Note: Include the trailing forward slash on the issuer
