Single Sign On
We provide a simple option for single sign on.
To use SSO, simply redirect the user to https://app.apptracker.dev or your custom domain, with 2 query parameters: called:
sso_token
we will pass this to your application to get the user's informationproperty
your property's appID
Example: https://app.apptracker.dev/?sso_token=55555555&property=CYCLE
We then call your verify token end point, which you can set with the API, and pass along the token in the body of a POST
request:
{ "token": "5555555" }
If your endpoint returns an object with 'email', they will be logged in as that user. (The user must be part of your property)
{ email: "[email protected]" }
Updated almost 2 years ago