ドキュメント

サポート

Vivox Core SDK

Vivox Core SDK

Access token signature

Learn how Vivox access tokens are signed using HMAC SHA256.
読み終わるまでの所要時間 1 分最終更新 23日前

The signature is the base64url-encoded HMAC of the first two parts:
base64UrlEncode(HMACSHA256(base64UrlEncode(header) + '.' + base64UrlEncode(payload), key))
The encoded header and encoded payload are joined with a period, undergoes HMAC with the token signing key, and then the entirety is encoded.