ドキュメント

​
​

Development

User Acquisition

Monetization

産業

Vivox Core SDK

Vivox Core SDK

このページは選択した言語では使用できません。
Vivox
​
​
Vivox Core SDK
  • Overview
  • Before you begin
  • Get started
  • Release notes
  • Developer Guide
  • Reference
    • Access Token Developer Guide
      • Access token terminology
      • Requests that require access tokens
      • Access token identifiers
      • Access token format
      • Access token examples
      • Generate a token on the client
      • Generate a token on a secure server
      • Key update API
      • Override development key generation
      • Access token error codes
    • Server to Server Web API Reference Guide
    • Core API Reference Manual
    • Third-party license information
  • Privacy overview
  1. Vivox Core SDK documentation

Access token terminology

Learn key terms and concepts related to Vivox access tokens.
読み終わるまでの所要時間 1 分
最終更新 8ヶ月前

Base64url encoding

Base64 encoding with all trailing '=' removed, '+' changed to '-', and '/' changed to '_'.
For more information, see the IETF documentation on RFC 7515.
The following example is an implementation of base64url encoding in PHP:
function base64url_encoded($str) { return rtrim(strtr(base64_encoded($str), '+/', '-_'), '=') }
The following example is an implementation of base64url encoding in Python:
import base64 def base64url_encode(s): """Return a base64url-encoded str""" return base64.urlsafe_b64encode(s).rstrip('=')
For an example implementation of base64url encoding in C#, see the IETF documentation on RFC 7515.

URL and filename safe string

A string composed of characters found in the URL and filename safe Base64 alphabet.
For more information, see the IETF documentation on RFC 4648.

Copyright © 2026 Unity Technologies
法規事項プライバシーポリシークッキーDocumentation Terms of Use私の個人情報を販売または共有しないプライバシーに関する選択 (クッキー設定)

"Unity" の名称、Unity のロゴ、およびその他の Unity の商標は、米国およびその他の国における Unity Technologies またはその関係会社の商標または登録商標です (詳しくはこちら)。その他の名称またはブランドは該当する所有者の商標です。

一部のページは利便性向上のため機械翻訳を使用しており、内容に不正確な表現が含まれる場合があります。内容に齟齬または不一致が生じた場合は、英語版を正本とします。

  • このページ
    • Base64url encoding

    • URL and filename safe string


このページの問題を報告する