ProxyToken
data class ProxyToken(val version: Int, val playerId: String, val targetServerId: String, val issuedAtMillis: Long, val expiresAtMillis: Long, val clientCertB64: String? = null, val proxyCertB64: String? = null, val nonceB64: String? = null)
Immutable token claims used by proxy and backend validation.
Constructors
Properties
Link copied to clipboard
Base64url-encoded DER of the client certificate (mTLS).
Link copied to clipboard
Expiration time in milliseconds since Unix Epoch.
Link copied to clipboard
Time of issuance in milliseconds since Unix Epoch.
Link copied to clipboard
Base64url-encoded DER of the proxy certificate (mTLS).
Link copied to clipboard
Backend server identifier selected by the proxy.