To securely authenticate users of your frontend app.
Tokens enable clients to send personal data to ComplyCube via our SDKs. They are JWTsarrow-up-right.
Each token is confined to one client and expires after 60 minutes, so you can safely use them at the front end of your application.
The generated token takes the following form: {"token": "header.payload.signature"}.
{"token": "header.payload.signature"}
You must generate a new token each time you initialize the ComplyCube SDKs.
token
string
The client-specific token. It expires after 60 minutes.
Was this helpful?