Security Hash
The security hash verifies authenticity for /players/impanel.
How to Generate
- Concatenate
user_identifierand Unix timestamp with a colon. Example:123e4567-e89b-12d3-a456-426614174000:1713456789 - Compute the SHA-256 HMAC using your API secret.
- Send the following as request params (not headers):
sech: the hex-encoded HMAC digestts: the same Unix timestamp used in the payload
- Hashes expire after 5 minutes**.
Ruby Example
payload = "#{user_identifier}:#{timestamp}"
digest = OpenSSL::HMAC.hexdigest('SHA256', api_secret, payload)