From 5ab598bab001b37c978e16a3e611c9be3e919fe0 Mon Sep 17 00:00:00 2001 From: genwhittTTD Date: Thu, 19 Dec 2024 15:09:33 -0500 Subject: [PATCH] wording mod in Advertiser guide, remove extra snippet files --- docs/guides/advertiser-dataprovider-guide.md | 2 +- .../_prebid-add-prebidjs-to-your-site-ja.mdx | 11 ---------- ...rebid-storing-uid2-token-in-browser-ja.mdx | 21 ------------------- docs/snippets/_sdk-reduce-latency-ja.mdx | 7 ------- 4 files changed, 1 insertion(+), 40 deletions(-) delete mode 100644 docs/snippets/_prebid-add-prebidjs-to-your-site-ja.mdx delete mode 100644 docs/snippets/_prebid-storing-uid2-token-in-browser-ja.mdx delete mode 100644 docs/snippets/_sdk-reduce-latency-ja.mdx diff --git a/docs/guides/advertiser-dataprovider-guide.md b/docs/guides/advertiser-dataprovider-guide.md index e1fbc3bae..f2a975765 100644 --- a/docs/guides/advertiser-dataprovider-guide.md +++ b/docs/guides/advertiser-dataprovider-guide.md @@ -17,7 +17,7 @@ If you are using a Public Operator service hosted in the Snowflake Data Marketpl ## Advertiser/Data Provider Routes to Use UID2 -Within the ad tech industry, advertisers use identity to build audiences, track conversions, and generate their graphs. As an advertiser, or as a data provider acting on behalf of an advertiser, the following table shows some examples of how you can accomplish some of these goals with UID2. +Within the ad tech industry, advertisers use identity to build audiences, track conversions, and generate their graphs. The following table shows some examples of how you, as an advertiser or as a data provider acting on behalf of an advertiser, can accomplish some of these goals with UID2. :::note There are other ways that you can use UID2, outside these use cases. These are just some examples. diff --git a/docs/snippets/_prebid-add-prebidjs-to-your-site-ja.mdx b/docs/snippets/_prebid-add-prebidjs-to-your-site-ja.mdx deleted file mode 100644 index 39400f1c8..000000000 --- a/docs/snippets/_prebid-add-prebidjs-to-your-site-ja.mdx +++ /dev/null @@ -1,11 +0,0 @@ - - -Prebid.js をサイトに追加するには、Prebid.js ドキュメントの [Getting Started for Developers](https://docs.prebid.org/dev-docs/getting-started.html) の指示に従ってください。 - -Prebid.js パッケージをダウンロードするときに、**User ID Modules** セクションに記載されている **Unified ID 2.0** というモジュールの隣にあるボックスをチェックして、UID2 module を追加します。 - -サイトに Prebid.js を追加し、正常に動作することを確認したら、UID2 module を設定する準備が整います。 - -:::tip -UID2 module がインストールされていることを確認するには、[`pbjs.installedModules` array](https://docs.prebid.org/dev-docs/publisher-api-reference/installedModules.html) で文字列 `uid2IdSystem` を見つけます。 -::: diff --git a/docs/snippets/_prebid-storing-uid2-token-in-browser-ja.mdx b/docs/snippets/_prebid-storing-uid2-token-in-browser-ja.mdx deleted file mode 100644 index e383fc6d0..000000000 --- a/docs/snippets/_prebid-storing-uid2-token-in-browser-ja.mdx +++ /dev/null @@ -1,21 +0,0 @@ - - -デフォルトでは、UID2 module はローカルストレージを使ってデータを保存します。代わりにクッキーを使用するには、以下の例に示すように `params.storage` を `cookie` に設定します。 - -詳細は Prebid ドキュメントの [Unified ID 2.0 Configuration](https://docs.prebid.org/dev-docs/modules/userid-submodules/unified2.html#unified-id-20-configuration) を参照してください。 - -```js -pbjs.setConfig({ - userSync: { - userIds: [{ - name: 'uid2', - params: { - // default value is 'localStorage' - storage: 'cookie' - } - }] - } -}); -``` - -クッキーのサイズが大きくなり、問題が発生する可能性があります。ただし、ローカルストレージがオプションでない場合、これが考えられるアプローチの 1 つです。 \ No newline at end of file diff --git a/docs/snippets/_sdk-reduce-latency-ja.mdx b/docs/snippets/_sdk-reduce-latency-ja.mdx deleted file mode 100644 index c429a212d..000000000 --- a/docs/snippets/_sdk-reduce-latency-ja.mdx +++ /dev/null @@ -1,7 +0,0 @@ -デフォルトでは、UID2 SDK は米国の UID2 本番環境サーバーに API コールを行います。ユーザーの所在地に応じて、ユーザーに近いサーバーを選択してレイテンシを低減することができます。 - -例えば、シンガポールのパブリッシャーは、base URL を `https://sg.prod.uidapi.com` に設定できます。これは UID2 本番環境ですが、サーバーはシンガポールにあります。 - -有効な base URL のリストについては、[Environments](../getting-started/gs-environments) を参照してください。 - -Base URL を `https://global.prod.uidapi.com` に設定することもできます。この URL は、オーディエンスを地理的に近い地域のサーバーに誘導します。オーディエンスが地理的に分散している場合に最適です。