Starts the Tiktok login flow. This call returns an authorization URL to redirect the user to.
Security
ClientAccessToken
Identifier of the device from which the authentication request originates
The URI the identity provider will redirect the user to after authentication. Must match one of the pre-configured redirect URIs in the application's social login settings. This URI will receive the authorization code that can be exchanged for user information.
Example:"https://www.example.com/login"
- Sandbox environmenthttps://api.sbx.transmitsecurity.io/cis/v1/auth/social/tiktok/start
- US production environmenthttps://api.transmitsecurity.io/cis/v1/auth/social/tiktok/start
- EU production environmenthttps://api.eu.transmitsecurity.io/cis/v1/auth/social/tiktok/start
- CA production environmenthttps://api.ca.transmitsecurity.io/cis/v1/auth/social/tiktok/start
- AU production environmenthttps://api.au.transmitsecurity.io/cis/v1/auth/social/tiktok/start
- JP production environmenthttps://api.gasne1-ts01.transmitsecurity.io/cis/v1/auth/social/tiktok/start
curl -i -X POST \
https://api.sbx.transmitsecurity.io/cis/v1/auth/social/tiktok/start \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"device_id": "string",
"redirect_uri": "https://www.example.com/login",
"state": "string"
}'