From 46004cccfafcff3826aa43d384cb2861debe8b34 Mon Sep 17 00:00:00 2001 From: genwhittTTD Date: Fri, 3 Jan 2025 17:10:38 -0500 Subject: [PATCH] remove legacy v1 to v2 upgrade doc + refs to it --- api-ja/v2/upgrades/upgrade-guide.md | 156 ------------------ api/v2/upgrades/upgrade-guide.md | 156 ------------------ docs/ref-info/updates-doc.md | 8 + docs/summary-doc-v2.md | 4 - .../current/summary-doc-v2.md | 4 - 5 files changed, 8 insertions(+), 320 deletions(-) delete mode 100644 api-ja/v2/upgrades/upgrade-guide.md delete mode 100644 api/v2/upgrades/upgrade-guide.md diff --git a/api-ja/v2/upgrades/upgrade-guide.md b/api-ja/v2/upgrades/upgrade-guide.md deleted file mode 100644 index 24d8c2c6f..000000000 --- a/api-ja/v2/upgrades/upgrade-guide.md +++ /dev/null @@ -1,156 +0,0 @@ -# UID2 API v1 to v2 Upgrade Guide - -このガイドでは、UID2 v1 と v2 API の違いを概説し、v2 API へのアップグレード方法を説明します。 - -- [Improvements and Changes from Version 1](#improvements-and-changes-from-version-1) -- [Prerequisites and Timeline](#prerequisites-and-timeline) -- [Publisher Upgrade Workflow](#publisher-upgrade-workflow) -- [Advertiser and Data Provider Upgrade Workflow](#advertiser-and-data-provider-upgrade-workflow) -- [FAQs](#faqs) - -## Improvements and Changes from Version 1 - -UID2 API v2 へのアップグレードには以下の変更が含まれます: - -- [Application API layer encryption](https://unifiedid.com/docs/getting-started/gs-encryption-decryption) が追加されました。これにより E2E コンテンツが保護され、ネットワークオペレーターや UID2 サービスオペレーターによる UID2 情報の漏洩が防止されます。
これは、v2 エンドポイントへの呼び出しを行うためには POST リクエストボディを暗号化し、レスポンスを復号する必要があることを意味します。 -- [authentication](https://unifiedid.com/docs/getting-started/gs-auth) のためのクライアント API Key に加えて、API リクエストを暗号化し、API レスポンスを復号するためのクライアントシークレットが必要です。 -- UID2 API v1 のすべての GET エンドポイントの HTTP リクエストタイプが GET から [UID2 API v2](https://unifiedid.com/docs/endpoints/summary-endpoints) への POST に変更されました。 -- リクエストにはもはやクエリパラメータが必要ありません。新しい POST メソッドは、JSON 形式のリクエストボディとして入力パラメータを受け取ります。 -- パラメータ値の URL エンコードは不要です。 -- [POST /identity/map](https://unifiedid.com/docs/endpoints/summary-endpoints) エンドポイントは、1 つまたは複数のメールアドレス、電話番号、またはそれらのハッシュに対して UID2 とソルトバケット ID を取得します。 - -[UID2 API v2 Documentation](https://unifiedid.com/docs/summary-doc-v2) を参照してください。 - -## Prerequisites and Timeline - -アップグレードを開始する前に、以下の要件を確認してください: - -- UID2 API v2 へのアップグレードには、API リクエストを暗号化し、レスポンスを復号するためのクライアントシークレットが必要です。[contact the UID2 administrator](https://unifiedid.com/docs/getting-started/gs-account-setup#contact-info) で、API リクエストを暗号化し、API レスポンスを復号するためのシークレットキーを取得してください。認証と認可については、[Authentication and Authorization](https://unifiedid.com/docs/getting-started/gs-auth) を参照してください。 -- すべての v1 SDK ファイルとエンドポイント、v0 SDK ファイル、およびバージョンのないエンドポイントは、2023 年 3 月 31 日に廃止および削除されますので、アップグレードを完了してください。 - - -## Publisher Upgrade Workflow - -このセクションには、パブリッシャー向けの後方互換性とアップグレード手順に関する情報が含まれています: - -- [Backward Compatibility for Publishers](#backward-compatibility-for-publishers) -- [Upgrade Steps for Publishers](#upgrade-steps-for-publishers) - -### Backward Compatibility for Publishers - -トークン生成とリフレッシュエンドポイントへの呼び出しは、独立してアップグレードできます。知っておくべきことは以下のとおりです: - -- v1 `GET /token/generate` または v1 `GET /token/refresh` エンドポイントから返された Refresh Token を、v2 [POST /token/refresh](https://unifiedid.com/docs/endpoints/post-token-refresh) エンドポイントに渡すことができますが、レスポンスは暗号化されません。 -- v2 [POST /token/refresh](https://unifiedid.com/docs/endpoints/post-token-refresh) エンドポイントは、これらのエンドポイントから返された Refresh Token のレスポンスのみを暗号化します。これは、呼び出し元がこれらのエンドポイントから返されたリフレッシュレスポンスキーを持っているという前提で行われます。 -- v2 [POST /token/generate](https://unifiedid.com/docs/endpoints/post-token-generate) または v2 [POST /token/refresh](https://unifiedid.com/docs/endpoints/post-token-refresh) エンドポイントから返された Refresh Token を、v1 `GET /token/refresh` エンドポイントに渡すことができますが、レスポンスは暗号化されません。 - - SDK for JavaScript v2 ([SDK for JavaScript Reference Guide](https://unifiedid.com/docs/sdks/sdk-ref-javascript) を参照してください) は、SDK for JavaScript SDK v1 の完全な置換です。以下に注意すべき点を示します: - - ユーザーの ID を格納するために使用されるファーストパーティクッキーは、両方のバージョンの SDK 間で完全に相互運用可能です。SDK for JavaScript v2 が v1 クッキーを読み取り、その逆も同様です。 - - [v2 SDK init() 関数](https://unifiedid.com/docs/sdks/sdk-ref-javascript#initopts-object-void) は、v1 `GET /token/generate` エンドポイントによって返された identity オブジェクトを受け入れます。 - - v1 SDK `init()` 関数は、v2 [POST /token/generate](https://unifiedid.com/docs/endpoints/post-token-generate) エンドポイントによって返された identity オブジェクトを受け入れます。 - -### Upgrade Steps for Publishers - -UID2 API v2 へのアップグレードを行うには、以下の手順を実行してください: - -1. [Upgrade the SDK for JavaScript](#upgrade-the-uid2-sdk-for-javascript). -1. [Upgrade calls to the token generate endpoint](#upgrade-token-generation-calls). -1. (Required only for integrations that do not use the [SDK for JavaScript)](https://unifiedid.com/docs/sdks/sdk-ref-javascript): [Upgrade calls to the token refresh endpoint](#upgrade-token-refresh-calls). - -#### Upgrade the SDK for JavaScript - -SDK for JavaScript をアップグレードするには、SDK をロードするスクリプトを更新する必要があります。この手順中に考慮する必要がある点は以下のとおりです: - -- JavaScript の UID2 SDK の `version 0` を使用している場合は、まず SDK の `version 1` にアップグレードしてください。 -- SDK を別の場所からロードしているか、SDK のプライベートコピーを保持している場合は、場所を適切に更新してください。 - -ページ上で、SDK のバージョン 1 ではなくバージョン 2 をロードするようにスクリプトを更新してください。 - -SDK version 1: - -```html - -``` - -SDK version 2: - -```html - -``` - -#### Upgrade Token Generation Calls - -アップグレードの一環として、アプリケーションの Server-Side で、v1 `GET /token/generate` エンドポイントへの呼び出しを v2 [POST /token/generate](https://unifiedid.com/docs/endpoints/post-token-generate) エンドポイントへの呼び出しに置き換える必要があります。 - -以下が必要な手順です: - -- [POST /token/generate](https://unifiedid.com/docs/endpoints/post-token-generate) への呼び出しは、リクエストボディを暗号化し、レスポンスを復号化する必要があります。詳細と例については、[Encrypting Requests and Decrypting Responses](https://unifiedid.com/docs/getting-started/gs-encryption-decryption) を参照してください。 -- [POST /token/generate](https://unifiedid.com/docs/endpoints/post-token-generate) への JSON レスポンスには、新しいプロパティ `refresh_response_key` が含まれます。 - - JavaScript の UID2 SDK (詳細は [SDK for JavaScript Reference Guide](https://unifiedid.com/docs/sdks/sdk-ref-javascript) を参照してください) を使用している場合、バージョンに関係なく、このキーを SDK の `init()` 関数に他のレスポンスプロパティと共に渡す必要があります。 - - SDK を使用していない場合、レスポンスデータをカスタムストレージ (たとえばデータベースやカスタムファーストパーティクッキー) に保存している場合は、ストレージを更新してリフレッシュレスポンスキーを保存する必要があります。 - - v1 `GET /token/refresh` エンドポイントによって返されたリフレッシュトークンを使用している既存のセッションには、リフレッシュレスポンスキーがないセッションがある場合、更新は必要ありません。これらのセッションはそのまま動作し続けます。 - -#### Upgrade Token Refresh Calls - -:::note -[SDK for JavaScript Reference Guide](https://unifiedid.com/docs/sdks/sdk-ref-javascript) を使用してトークンをリフレッシュおよび管理している場合、追加の操作は必要ありません。 -::: - -SDK を使用せず、Server-Side または Client-Side でトークンをリフレッシュする場合、v2 [POST /token/refresh](https://unifiedid.com/docs/endpoints/post-token-refresh) エンドポイントにリクエストを行う際に以下の点に注意してください: - - - リフレッシュトークンをそのままリクエストボディに渡すことができます。 - - v2 エンドポイントから返された Refresh Token には、Refresh Token と一緒に返される `refresh_response_key` 値が含まれます。このキーは [decrypting the response](https://unifiedid.com/docs/getting-started/gs-encryption-decryption) に必要です。 - - v2 エンドポイントから返された Refresh Token に、新しい Refresh Token が含まれる場合、ユーザーの ID ストレージ (たとえばデータベースやカスタムファーストパーティクッキー) に保存する必要があります。 - - v1 エンドポイントから返された Refresh Token には、関連する `refresh_response_key` が含まれていないため、レスポンスは暗号化されません。 - -## Advertiser and Data Provider Upgrade Workflow - -- [Backward Compatibility for Advertisers and Data Providers](#backward-compatibility-for-advertisers-and-data-providers) -- [Upgrade Steps for Advertisers and Data Providers](#upgrade-steps-for-advertisers-and-data-providers) - - -### Backward Compatibility for Advertisers and Data Providers - -UID2 API v2 へのアップグレードには以下の変更が含まれます: - -- v1 `GET /identity/map` エンドポイントは、単一ユーザーの直接識別情報 (DII) を UID2 にマッピングするための v2 [POST /identity/map](https://unifiedid.com/docs/endpoints/post-identity-map) エンドポイントに置き換えられました。この新しいエンドポイントは、単一ユーザーの DII をマッピングするだけでなく、複数のユーザーの DII をマッピングします。 -- v2 [POST /identity/map](https://unifiedid.com/docs/endpoints/post-identity-map) および [POST /identity/buckets](https://unifiedid.com/docs/endpoints/post-identity-buckets) エンドポイントから返される UID2 とバケット ID は、対応する v1 エンドポイントから返されるものと同じです。 -- [Snowflake Integration Guide](https://unifiedid.com/docs/guides/snowflake_integration) は、UID2 v2 API へのアップグレードに影響を受けず、変更は必要ありません。 - -### Upgrade Steps for Advertisers and Data Providers - -UID2 API v2 にアップグレードするには、以下の v1 エンドポイントを対応する v2 エンドポイントに置き換えてください。 - -| v1 Endpoint | v2 Endpoint | Comments | -| :--- |:--- |:--- | -| `GET /identity/buckets` | [POST /identity/buckets](https://unifiedid.com/docs/endpoints/post-identity-buckets) |HTTPリクエストタイプが変更されました。 | -| `POST /identity/map` | [POST /identity/map](https://unifiedid.com/docs/endpoints/post-identity-map)| v2 エンドポイントは v1 エンドポイントと同じですが、シングルユーザー用の DII もマッピングします。 | -| `GET /identity/map` |[POST /identity/map](https://unifiedid.com/docs/endpoints/post-identity-map) | HTTPリクエストタイプが変更されました。
新しいPOSTエンドポイントは、単一ユーザーと複数ユーザーのDIIをマッピングします。 | - ->IMPORTANT: UID2 API v2 への呼び出しを行うには、POST リクエストボディを暗号化し、レスポンスを復号する必要があります。詳細と例については、[Encrypting Requests and Decrypting Responses](https://unifiedid.com/docs/getting-started/gs-encryption-decryption) を参照してください。 - -## FAQs - -### Do I have to do the upgrade? - -はい。UID2 API v2はUID2 API v1と互換性がないため、アップグレードが必要です。 - -### What are the key differences between the old and new APIs? - -詳細は [Improvements and Changes from Version 1](#improvements-and-changes-from-version-1) を参照してください。 - -### When can I start the upgrade? - -いつでも開始できますが、2023 年 3 月 31 日までに完了してください。 - -### Can I continue using the v1 API and API keys? - -はい。v1 エンドポイントは 2023 年 3 月 31 日までサポートされます。それ以降、すべての非推奨 v1 SDK ファイルとエンドポイント、v0 SDK ファイル、およびバージョン管理されていないエンドポイントは削除されます。以前に発行されたクライアント API Key は v2 エンドポイントに必要となり、v1 エンドポイントは削除されるまで引き続き使用できます。 - -### How do I obtain a client secret key for the new API? - -秘密鍵を入手するには、[contact the UID2 administrator](https://unifiedid.com/docs/getting-started/gs-account-setup#contact-info) を参照してください。 - -### How do I encrypt requests and decrypt responses? - -[Encrypting Requests and Decrypting Responses](https://unifiedid.com/docs/getting-started/gs-encryption-decryption) のページには、ワークフローとさまざまなプログラミング言語での例が説明されています。 diff --git a/api/v2/upgrades/upgrade-guide.md b/api/v2/upgrades/upgrade-guide.md deleted file mode 100644 index b7c0c6029..000000000 --- a/api/v2/upgrades/upgrade-guide.md +++ /dev/null @@ -1,156 +0,0 @@ -# UID2 API v1 to v2 Upgrade Guide - -This guide outlines the differences between the UID2 v1 and v2 APIs and explains how to upgrade to the v2 API. - -- [Improvements and Changes from Version 1](#improvements-and-changes-from-version-1) -- [Prerequisites and Timeline](#prerequisites-and-timeline) -- [Publisher Upgrade Workflow](#publisher-upgrade-workflow) -- [Advertiser and Data Provider Upgrade Workflow](#advertiser-and-data-provider-upgrade-workflow) -- [FAQs](#faqs) - -## Improvements and Changes from Version 1 - -The v2 updates to the UID2 API include the following: - -- [Application API layer encryption](https://unifiedid.com/docs/getting-started/gs-encryption-decryption) has been added. It helps protect E2E content and prevents sensitive UID2 information from leaking to a network operator or the UID2 service operator.
This also means that performing calls to the v2 endpoints requires encrypting the POST request body and decrypting the response. -- In addition to the client API key for [authentication](https://unifiedid.com/docs/getting-started/gs-auth), a client secret is now required for encrypting API requests and decrypting API responses. -- The HTTP request type of all GET endpoints in the UID2 API v1 has changed from GET to POST in the [UID2 API v2](https://unifiedid.com/docs/endpoints/summary-endpoints). -- No more query parameters are required in requests. The new POST methods take input parameters as the request body in JSON format. -- No URL-encoding of parameter values is required. -- The [POST /identity/map](https://unifiedid.com/docs/endpoints/summary-endpoints) endpoint now retrieves UID2s and salt bucket IDs for one or multiple email addresses, phone numbers, or the respective hashes. - -See also [UID2 API v2 Documentation](https://unifiedid.com/docs/summary-doc-v2). - -## Prerequisites and Timeline - -Before you start the upgrade, be sure to review the following requirements: - -- To be able to authenticate to the UID2 endpoints, [contact the UID2 administrator](https://unifiedid.com/docs/getting-started/gs-account-setup#contact-info) and obtain a secret key for encrypting API requests and decrypting API responses. See also [Authentication and Authorization](https://unifiedid.com/docs/getting-started/gs-auth). -- You must complete your upgrade by **March 31, 2023**, when all v1 SDK files and endpoints, the v0 SDK files, and any unversioned endpoints will be deprecated and removed. - - -## Publisher Upgrade Workflow - -This section includes the following information about backward compatibility and upgrade steps for publishers: - -- [Backward Compatibility for Publishers](#backward-compatibility-for-publishers) -- [Upgrade Steps for Publishers](#upgrade-steps-for-publishers) - -### Backward Compatibility for Publishers - -You can upgrade calls to the token generation and refresh endpoints independently. Here's what you need to know: - - - You can pass refresh tokens returned by the v1 `GET /token/generate` or v1 `GET /token/refresh` endpoints to the v2 [POST /token/refresh](https://unifiedid.com/docs/endpoints/post-token-refresh) endpoint, but responses will not be encrypted. - - The v2 [POST /token/refresh](https://unifiedid.com/docs/endpoints/post-token-refresh) endpoint encrypts responses only for refresh tokens returned by the v2 [POST /token/generate](https://unifiedid.com/docs/endpoints/post-token-generate) or v2 [POST /token/refresh](https://unifiedid.com/docs/endpoints/post-token-refresh) endpoints, with the assumption that the caller has the refresh response key returned by these endpoints. - - You can pass refresh tokens returned by the v2 [POST /token/generate](https://unifiedid.com/docs/endpoints/post-token-generate) or v2 [POST /token/refresh](https://unifiedid.com/docs/endpoints/post-token-refresh) endpoint to the v1 `GET /token/refresh` endpoint, which never encrypts responses. - -The SDK for JavaScript v2 (see [SDK for JavaScript Reference Guide](https://unifiedid.com/docs/sdks/sdk-ref-javascript)) is a drop-in replacement for the SDK for JavaScript SDK v1. Here's what you need to know: - - The first-party cookie used for storing the user's identity is fully interoperable between the two versions of the SDK. This means that the SDK for JavaScript v2 can read v1 cookies and vice versa. - - The [v2 SDK init() function](https://unifiedid.com/docs/sdks/sdk-ref-javascript#initopts-object-void) accepts the identity object returned by the v1 `GET /token/generate` endpoint. - - The v1 SDK `init()` function accepts the identity object returned by the v2 [POST /token/generate](https://unifiedid.com/docs/endpoints/post-token-generate) endpoint. - -### Upgrade Steps for Publishers - -To upgrade to the UID API v2, complete the following steps: - -1. [Upgrade the SDK for JavaScript](#upgrade-the-uid2-sdk-for-javascript). -1. [Upgrade calls to the token generate endpoint](#upgrade-token-generation-calls). -1. (Required only for integrations that do not use the [SDK for JavaScript)](https://unifiedid.com/docs/sdks/sdk-ref-javascript): [Upgrade calls to the token refresh endpoint](#upgrade-token-refresh-calls). - -#### Upgrade the SDK for JavaScript - -To upgrade the SDK for JavaScript, you need to update the script that loads the SDK. Here's what you need to keep in mind during this step: - -- If you are using `version 0` of the SDK for JavaScript, be sure to upgrade to `version 1` of the SDK first. -- If you load the SDK from another location or hold a private copy of the SDK, be sure to update the locations accordingly. - -On your pages, update the script to load version 2 of the SDK instead of version 1. - -SDK version 1: - -```html - -``` - -SDK version 2: - -```html - -``` - -#### Upgrade Token Generation Calls - -As part of the upgrade, on the server side of your application, you must replace calls to the v1 `GET /token/generate` endpoint with calls to the v2 [POST /token/generate](https://unifiedid.com/docs/endpoints/post-token-generate) endpoint. - -Here's what you need to know and do: - -- Performing a [POST /token/generate](https://unifiedid.com/docs/endpoints/post-token-generate) call requires encrypting the request body and decrypting the response. For details and examples, see [Encrypting Requests and Decrypting Responses](https://unifiedid.com/docs/getting-started/gs-encryption-decryption). -- The JSON response from the [POST /token/generate](https://unifiedid.com/docs/endpoints/post-token-generate) endpoint contains a new property: `refresh_response_key`. - - If you are using the SDK for JavaScript (see [SDK for JavaScript Reference Guide](https://unifiedid.com/docs/sdks/sdk-ref-javascript)), regardless of the version, you must pass this key to the `init()` function of the SDK along with other response properties. - - If you are not using the SDK and are storing the response data in custom storage (for example, a database or a custom first-party cookie), you must update the storage to store the refresh response key. - - No updates are required for any existing sessions that store refresh tokens returned by the v1 `GET /token/refresh` endpoint and do not have a corresponding refresh response key. These sessions will continue working as is. - -#### Upgrade Token Refresh Calls - -:::note -If you are using the [SDK for JavaScript Reference Guide](https://unifiedid.com/docs/sdks/sdk-ref-javascript) to refresh and manage tokens, no further action is required. -::: - -If you refresh tokens either on server or on client side without using the SDK, keep in mind the following, when making requests to the v2 [POST /token/refresh](https://unifiedid.com/docs/endpoints/post-token-refresh) endpoint: - - - You can pass the returned refresh token without any modifications in the request body. - - Refresh tokens returned by the v2 endpoints are expected to have a `refresh_response_key` value returned together with the refresh token. This key is required for [decrypting the response](https://unifiedid.com/docs/getting-started/gs-encryption-decryption). - - If the response contains a new refresh token, you must save it along with the corresponding `refresh_response_key` value into the user's identity storage (for example, a database or a custom first-party cookie). - - Refresh tokens returned by the v1 endpoints do not have the associated `refresh_response_key`, so the response will not be encrypted. - -## Advertiser and Data Provider Upgrade Workflow - -- [Backward Compatibility for Advertisers and Data Providers](#backward-compatibility-for-advertisers-and-data-providers) -- [Upgrade Steps for Advertisers and Data Providers](#upgrade-steps-for-advertisers-and-data-providers) - - -### Backward Compatibility for Advertisers and Data Providers - -Here's what you need to know about upgrading to the UID2 API v2: - -- The v1 `GET /identity/map` endpoint for mapping a single user's directly identifying information (DII) to UID2 has been replaced with the v2 [POST /identity/map](https://unifiedid.com/docs/endpoints/post-identity-map) endpoint, which maps DII for single and multiple users. -- UID2s and bucket IDs returned by the v2 [POST /identity/map](https://unifiedid.com/docs/endpoints/post-identity-map) and [POST /identity/buckets](https://unifiedid.com/docs/endpoints/post-identity-buckets) endpoints are the same as those returned by the corresponding v1 endpoints. -- The [Snowflake Integration Guide](https://unifiedid.com/docs/guides/snowflake_integration) is not affected by the upgrade to the UID2 v2 API and requires no changes. - -### Upgrade Steps for Advertisers and Data Providers - -To upgrade to the UID API v2, replace calls to the following v1 endpoints with the corresponding v2 endpoints. - -| v1 Endpoint | v2 Endpoint | Comments | -| :--- |:--- |:--- | -| `GET /identity/buckets` | [POST /identity/buckets](https://unifiedid.com/docs/endpoints/post-identity-buckets) |The HTTP request type has changed. | -| `POST /identity/map` | [POST /identity/map](https://unifiedid.com/docs/endpoints/post-identity-map)| The v2 endpoint is identical to the v1 endpoint, except it also maps DII for single users. | -| `GET /identity/map` |[POST /identity/map](https://unifiedid.com/docs/endpoints/post-identity-map) |The HTTP request type has changed.
The new POST endpoint maps DII for single and multiple users. | - ->IMPORTANT: Performing calls to the UID2 API v2 requires encrypting the POST request body and decrypting the response. For details and examples, see [Encrypting Requests and Decrypting Responses](https://unifiedid.com/docs/getting-started/gs-encryption-decryption). - -## FAQs - -### Do I have to do the upgrade? - -Yes. The UID2 API v2 is not compatible with UID2 API v1 and requires an upgrade. - -### What are the key differences between the old and new APIs? - -For details, see [Improvements and Changes from Version 1](#improvements-and-changes-from-version-1). - -### When can I start the upgrade? - -Any time, but be sure to complete it by March 31, 2023. - -### Can I continue using the v1 API and API keys? - -Yes. The v1 endpoints will be supported until March 31, 2023. After that date, all deprecated v1 SDK files and endpoints, the v0 SDK files, and any unversioned endpoints will be removed. Previously issued client API keys will be required for the v2 endpoints and will continue working with the v1 endpoints until their removal. - -### How do I obtain a client secret key for the new API? - -To obtain your secret key, [contact the UID2 administrator](https://unifiedid.com/docs/getting-started/gs-account-setup#contact-info). - -### How do I encrypt requests and decrypt responses? - -The [Encrypting Requests and Decrypting Responses](https://unifiedid.com/docs/getting-started/gs-encryption-decryption) page explains the workflow and provides examples in different programming languages. diff --git a/docs/ref-info/updates-doc.md b/docs/ref-info/updates-doc.md index f0f2f2145..5a32ff74f 100644 --- a/docs/ref-info/updates-doc.md +++ b/docs/ref-info/updates-doc.md @@ -11,6 +11,14 @@ import Link from '@docusaurus/Link'; Check out the latest updates to our UID2 documentation resources. + + + + ### New: Zoom-In Tool for Images December 15, 2024 diff --git a/docs/summary-doc-v2.md b/docs/summary-doc-v2.md index e1af0147b..f80d19d45 100644 --- a/docs/summary-doc-v2.md +++ b/docs/summary-doc-v2.md @@ -9,10 +9,6 @@ import Link from '@docusaurus/Link'; # UID2 API v2 Documentation -:::note -For upgrade instructions, see [UID2 API v1 to v2 Upgrade Guide](https://github.com/IABTechLab/uid2docs/blob/main/api/v2/upgrades/upgrade-guide.md) in GitHub. -::: - For UID2 definitions, ID types, guiding principles, components, and other conceptual details, see [Unified ID 2.0 Overview](intro.md). For contact and license information, as well as normalization and hash encoding rules, see [Getting Started](/docs/category/getting-started). For details on using the API, see the following pages. diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/summary-doc-v2.md b/i18n/ja/docusaurus-plugin-content-docs/current/summary-doc-v2.md index f840598a3..7cfa7dceb 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/summary-doc-v2.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/summary-doc-v2.md @@ -9,10 +9,6 @@ import Link from '@docusaurus/Link'; # UID2 API v2 Documentation -:::note -アップグレードの手順については、GitHub の [UID2 API v1 to v2 Upgrade Guide](https://github.com/IABTechLab/uid2docs/blob/main/api-ja/v2/upgrades/upgrade-guide.md) を参照してください。 -::: - UID2 の定義、ID タイプ、指針、構成要素、その他の概念的な詳細は [UID2 概要](intro.md) を参照してください。連絡先やライセンス情報、正規化およびハッシュエンコーディングの規則は [Getting Started](/docs/category/getting-started) を参照してください。 API の使用方法は、以下のページを参照してください。