Skip to content

Commit 0cba927

Browse files
authored
Merge pull request #771 from IABTechLab/gwh-APIDOCS-2801-sample-apps-standardize-uid2
Gwh apidocs 2801 sample apps standardize uid2
2 parents 4fd0d51 + 34c5552 commit 0cba927

11 files changed

+32
-32
lines changed

docs/getting-started/gs-faqs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ For details, see [Recommended Token Refresh Frequency](../ref-info/ref-tokens.md
110110
You can use the `[email protected]` email address or the `+00000000002` phone number to test your token refresh workflow. Using either parameter value in a request always generates an identity response with a `refresh_token` that results in a logout response.
111111

112112
:::tip
113-
To arrive at the hashed and Base64-encoded values of any email address or phone number value, use the [UID2 Hashing Tool](gs-normalization-encoding.md#uid2-hashing-tool).
113+
To get the normalized, hashed, and Base64-encoded hashed values for any email address, or the hashed and Base64-encoded hashed values for a phone number, you can use the hashing tool: see [UID2 Hashing Tool](gs-normalization-encoding.md#uid2-hashing-tool).
114114
:::
115115

116116
The procedure is a little different depending on whether or not you are using an SDK.

docs/guides/integration-google-ss.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ window.getUid2AdvertisingToken = async () => {
9595

9696
For details, see [Publisher Integration Guide, Server-Side](integration-publisher-server-side.md).
9797

98-
A sample application is also available for server-side integration. See [Sample Applications](#sample-applications).
98+
A sample implementation is also available for server-side integration. See [Sample Implementations](#sample-implementations).
9999

100100
### SDK for JavaScript Client-Side Integration
101101

@@ -105,20 +105,20 @@ This script is hosted on CDN, and GPT automatically loads it with the secure sig
105105

106106
For details, see [Client-Side Integration Guide for JavaScript](integration-javascript-client-side.md).
107107

108-
A sample application is also available for integration using the SDK for JavaScript. See [Sample Applications](#sample-applications).
108+
A sample implementation is also available for integration using the SDK for JavaScript. See [Sample Implementations](#sample-implementations).
109109

110-
## Sample Applications
110+
## Sample Implementations
111111

112-
The following sample applications are available to illustrate how to integrate with the Google Ad Manager secure signals feature:
112+
The following sample implementations are available to illustrate how to integrate with the Google Ad Manager secure signals feature:
113113

114-
- Server-Side UID2 Integration Example:
115-
- [Sample application](https://secure-signals-srvonly-integ.uidapi.com/)
114+
- Server-Side UID2 SDK Integration Example:
115+
- [Sample implementation](https://secure-signals-srvonly-integ.uidapi.com/)
116116
- [Code repository](https://github.com/IABTechLab/uid2-web-integrations/tree/main/examples/google-secure-signals-integration/server_only)
117117
- Client-Server UID2 SDK Integration Example:
118-
- [Sample application](https://secure-signals-jssdk-integ.uidapi.com/)
118+
- [Sample implementation](https://secure-signals-jssdk-integ.uidapi.com/)
119119
- [Code repository](https://github.com/IABTechLab/uid2-web-integrations/tree/main/examples/google-secure-signals-integration/with_sdk_v3)
120120

121-
Each sample application has its own instructions.
121+
Each sample implementation has its own instructions.
122122

123123
## Troubleshooting
124124

docs/guides/integration-javascript-client-server.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ If you prefer to integrate with UID2 via **only** client-side JavaScript changes
2020

2121
For technical details about the SDK, see [SDK for JavaScript Reference Guide](../sdks/sdk-ref-javascript.md).
2222

23-
## Sample Implementation Website
23+
## Sample Implementation
2424

25-
For an example application, see the UID2 Google Secure Signals with SDK v3 example:
25+
For a sample implementation, see the UID2 Google Secure Signals with SDK v3 example:
2626
- Code and docs: [UID2 SDK Secure Signals Integration Example](https://github.com/IABTechLab/uid2-web-integrations/tree/main/examples/google-secure-signals-integration/with_sdk_v3)
2727
- Running site: [Client-Server UID2 SDK Integration Example](https://secure-signals-jssdk-integ.uidapi.com/)
2828

docs/guides/integration-javascript-client-side.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ If you want to use a debug build of the SDK, use the following URL instead:
5555

5656
- [https://cdn.integ.uidapi.com/uid2-sdk-3.4.5.js](https://cdn.integ.uidapi.com/uid2-sdk-3.4.5.js)
5757

58-
## Sample Implementation Website
58+
## Sample Implementation
5959

60-
For an example website, see this example:
60+
For a sample implementation, see this example:
6161
- Code: [Example Client-Side Integration for JavaScript](https://github.com/IABTechLab/uid2-web-integrations/tree/main/examples/cstg)
6262
- Running site: [Client-Side Integration Example, UID2 JavaScript SDK](https://cstg-integ.uidapi.com/)
6363

docs/guides/integration-publisher-server-side.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The following options are available for publishers to integrate with UID2 on the
1919
- SDK for Python (see [Usage for Publishers](../sdks/sdk-ref-python.md#usage-for-publishers) section).
2020
- Custom server code to generate and refresh the UID2 token by calling the [POST /token/generate](../endpoints/post-token-generate.md) and [POST /token/refresh](../endpoints/post-token-refresh.md) endpoints.
2121

22-
There is also an example application that demonstrates the workflow. See [Sample Application](#sample-application).
22+
There is also a sample implementation that demonstrates the workflow. See [Sample Implementation](#sample-implementation).
2323

2424
For a complete summary of publisher integration options, see [Publisher Integrations](summary-guides.md#publisher-integrations).
2525

@@ -108,12 +108,12 @@ If the user logs out, do not use the UID2 token.
108108
| 4-a | N/A | The user logs out from a publisher asset. |
109109
| 4-b | N/A | Remove the UID2 token you've stored for that user. No interaction with the UID2 service is required. |
110110

111-
## Sample Application
111+
## Sample Implementation
112112

113-
A sample application is available for server-side integration. See:
113+
A sample implementation is available for server-side integration. See:
114114

115-
- [Server-Side UID2 Integration Example (sample application)](https://secure-signals-srvonly-integ.uidapi.com/)
116-
- [Server-Side UID2 Integration Example (readme)](https://github.com/IABTechLab/uid2-examples/blob/main/publisher/server_only/README.md)
115+
- [Client-Server UID2 Integration Example (sample implementation)](https://secure-signals-srvonly-integ.uidapi.com/)
116+
- [Client-Server UID2 Integration Example (readme)](https://github.com/IABTechLab/uid2-examples/blob/main/publisher/server_only/README.md)
117117

118118
## FAQs
119119

docs/sdks/sdk-ref-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This SDK simplifies development for publishers who want to build their own custo
3939
| :--- | :--- | :--- | :--- | :--- | :--- |
4040
| — | — | ✅ | ✅ | — | — |
4141

42-
## Sample Implementation Website
42+
## Sample Implementation
4343

4444
For example applications with associated documentation, see:
4545
- The UID2 Google Secure Signals with SDK v3 example:

i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-google-ss.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ window.getUid2AdvertisingToken = async () => {
9595

9696
詳しくは、[Server-Only UID2 Integration Guide](integration-publisher-server-side.md) を参照してください。
9797

98-
Server Only インテグレーションのためのサンプルアプリケーションも用意されています。[Sample Applications](#sample-applications) を参照してください。
98+
Server Only インテグレーションのためのサンプルアプリケーションも用意されています。[Sample Implementations](#sample-implementations) を参照してください。
9999

100100
### SDK for JavaScript Client-Side Integration
101101

@@ -105,17 +105,17 @@ SDK for JavaScript バージョン 3.0.0 以降を使用している場合、UID
105105

106106
詳しくは [Client-Side Integration Guide for JavaScript](integration-javascript-client-side.md) を参照してください。
107107

108-
SDK for JavaScript を使用したインテグレーションのためのサンプルアプリケーションも用意されています。[Sample Applications](#sample-applications) を参照してください。
108+
SDK for JavaScript を使用したインテグレーションのためのサンプルアプリケーションも用意されています。[Sample Implementations](#sample-implementations) を参照してください。
109109

110-
## Sample Applications
110+
## Sample Implementations
111111

112112
Google Ad Manager のセキュアシグナル機能との連携方法については、以下のサンプルアプリケーションを参照してください:
113113

114-
- Server-Side UID2 Integration Example:
115-
- [Sample application](https://secure-signals-srvonly-integ.uidapi.com/)
114+
- Server-Side UID2 SDK Integration Example:
115+
- [Sample implementation](https://secure-signals-srvonly-integ.uidapi.com/)
116116
- [Code repository](https://github.com/IABTechLab/uid2-web-integrations/tree/main/examples/google-secure-signals-integration/server_only)
117117
- Client-Server UID2 SDK Integration Example:
118-
- [Sample application](https://secure-signals-jssdk-integ.uidapi.com/)
118+
- [Sample implementation](https://secure-signals-jssdk-integ.uidapi.com/)
119119
- [Code repository](https://github.com/IABTechLab/uid2-web-integrations/tree/main/examples/google-secure-signals-integration/with_sdk_v3)
120120

121121
各サンプルアプリケーションには独自のインストラクションがあります。

i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-javascript-client-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Client-Side の JavaScript の変更 **だけ** で UID2 とインテグレー
2020

2121
SDK の技術的な詳細は [SDK for JavaScript Reference Guide](../sdks/sdk-ref-javascript.md) を参照してください。
2222

23-
## Sample Implementation Website
23+
## Sample Implementation
2424

2525
アプリケーションの例については、SDK v3 を使用した UID2 Google Secure Signals の例を参照してください:
2626
- コードとドキュメント: [UID2 SDK Secure Signals Integration Example](https://github.com/IABTechLab/uid2-web-integrations/tree/main/examples/google-secure-signals-integration/with_sdk_v3)

i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-javascript-client-side.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ SDK のデバッグビルドを使用したい場合は、代わりに以下の
5555

5656
- [https://cdn.integ.uidapi.com/uid2-sdk-3.4.5.js](https://cdn.integ.uidapi.com/uid2-sdk-3.4.5.js)
5757

58-
## Sample Implementation Website
58+
## Sample Implementation
5959

6060
アプリケーションの例については、SDK v3 を使用した UID2 Google Secure Signals の例を参照してください:
6161
- Code: [Example Client-Side Integration for JavaScript](https://github.com/IABTechLab/uid2-web-integrations/tree/main/examples/cstg)

i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-publisher-server-side.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import Link from '@docusaurus/Link';
1919
- SDK for Python (see [Usage for Publishers](../sdks/sdk-ref-python.md#usage-for-publishers) section).
2020
- Custom server code to generate and refresh the UID2 token by calling the [POST /token/generate](../endpoints/post-token-generate.md) and [POST /token/refresh](../endpoints/post-token-refresh.md) endpoints.
2121

22-
ワークフローを示すサンプルアプリケーションもあります。詳細は [Sample Application](#sample-application) を参照してください。
22+
ワークフローを示すサンプルアプリケーションもあります。詳細は [Sample Implementation](#sample-implementation) を参照してください。
2323

2424
パブリッシャーインテグレーションオプションの完全な概要については、[Publisher Integrations](summary-guides.md#publisher-integrations) を参照してください。
2525

@@ -106,12 +106,12 @@ UID2 Token が SSP から DSP に送信されるとき、ビッドストリー
106106
| 4-a | N/A | ユーザーがパブリッシャーアセットからログアウトしました。|
107107
| 4-b | N/A | そのユーザー用に保存してある UID2 Token を削除します。UID2 Service とのやりとりは必要ありません。 |
108108

109-
## Sample Application
109+
## Sample Implementation
110110

111111
Server-only のインテグレーションの場合は、サンプルアプリケーションをがあります。参照してください:
112112

113-
- [Server-Side UID2 Integration Example (sample application)](https://secure-signals-srvonly-integ.uidapi.com/)
114-
- [Server-Side UID2 Integration Example (readme)](https://github.com/IABTechLab/uid2-examples/blob/main/publisher/server_only/README.md)
113+
- [Client-Server UID2 Integration Example (sample implementation)](https://secure-signals-srvonly-integ.uidapi.com/)
114+
- [Client-Server UID2 Integration Example (readme)](https://github.com/IABTechLab/uid2-examples/blob/main/publisher/server_only/README.md)
115115

116116
## FAQs
117117

0 commit comments

Comments
 (0)