Authentication
Base API URL
Base URL:
https://api.skysmash.io
Endpoint
To access the Skysmash API, authentication is required. Use the following endpoint to authenticate:
POST /playfabauthenticate/customAuthenticate
Header:
secretKey
: The secret key provided by Sky Smash to trusted partners (Do not share this key with anyone).
Request Body: Not required
Response (if authentication is successful):
{
"status": 0,
"data": {
"accessToken": "eyJ..."
}
}
Save the accessToken
for subsequent API requests. You must include this token in the request header as the authorization
bearer token. This access token expire after 7 days
Last updated