Skip to content

Commit 4ee1810

Browse files
authored
Merge pull request #766 from IABTechLab/gwh-APIDOCS-2755-uid2-minor-mods
minor edits
2 parents 6e052ed + 48acc9c commit 4ee1810

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

docs/endpoints/post-identity-buckets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ You must encrypt all requests using your secret. For details, and code examples
2525

2626
| Path Parameter | Data Type | Attribute | Description |
2727
| :--- | :--- | :--- | :--- |
28-
| `{environment}` | string | Required | Integration environment: `https://operator-integ.uidapi.com`<br/>Production environment: The best choice depends on where your users are based. For information about how to choose the best URL for your use case, and a full list of valid base URLs, see [Environments](../getting-started/gs-environments.md). |
28+
| `{environment}` | string | Required | Testing (integration) environment: `https://operator-integ.uidapi.com`<br/>Production environment: The best choice depends on where your users are based. For information about how to choose the best URL for your use case, and a full list of valid base URLs, see [Environments](../getting-started/gs-environments.md). |
2929

3030
:::note
3131
The integration environment and the production environment require different <Link href="../ref-info/glossary-uid#gl-api-key">API keys</Link>.

docs/endpoints/post-identity-map.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You must encrypt all requests using your secret. For details, and code examples
3434

3535
| Path Parameter | Data Type | Attribute | Description |
3636
| :--- | :--- | :--- | :--- |
37-
| `{environment}` | string | Required | Integration environment: `https://operator-integ.uidapi.com`<br/>Production environment: The best choice depends on where your users are based. For information about how to choose the best URL for your use case, and a full list of valid base URLs, see [Environments](../getting-started/gs-environments.md). |
37+
| `{environment}` | string | Required | Testing (integration) environment: `https://operator-integ.uidapi.com`<br/>Production environment: The best choice depends on where your users are based. For information about how to choose the best URL for your use case, and a full list of valid base URLs, see [Environments](../getting-started/gs-environments.md). |
3838

3939
:::note
4040
The integration environment and the production environment require different <Link href="../ref-info/glossary-uid#gl-api-key">API keys</Link>.

docs/endpoints/post-optout-status.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ You must encrypt all requests using your secret. For details, and code examples
3838

3939
| Path Parameter | Data Type | Attribute | Description |
4040
| :--- | :--- | :--- | :--- |
41-
| `{environment}` | string | Required | Integration environment: `https://operator-integ.uidapi.com`<br/>Production environment: The best choice depends on where your users are based. For information about how to choose the best URL for your use case, and a full list of valid base URLs, see [Environments](../getting-started/gs-environments.md). |
41+
| `{environment}` | string | Required | Testing (integration) environment: `https://operator-integ.uidapi.com`<br/>Production environment: The best choice depends on where your users are based. For information about how to choose the best URL for your use case, and a full list of valid base URLs, see [Environments](../getting-started/gs-environments.md). |
4242

4343
:::note
4444
The integration environment and the production environment require different <Link href="../ref-info/glossary-uid#gl-api-key">API keys</Link>.

docs/endpoints/post-token-generate.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ This section includes the following sample responses:
103103

104104
#### Successful Response
105105

106-
A successful decrypted response returns the user's advertising and refresh tokens for the specified email address, phone number, or the respective hash.
106+
A successful decrypted response returns the user's advertising and refresh tokens for the specified email address, phone number, or the respective hash.
107107

108108
<IdentityGenerateResponse />
109109

@@ -145,8 +145,8 @@ If the `status` value is anything other than `success`, the `message` field prov
145145

146146
## Test Identities
147147

148-
| Type | Identity | Purpose | Next Endpoint |
149-
|:------|:-----------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------|
148+
| Type | Identity | Purpose | Next Endpoint |
149+
|:------|:-----------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------|
150150
| Email | `[email protected]` | Test that the `advertising_token` you've cached matches the `advertising_token` for the specified email address. | [POST&nbsp;/token/validate](post-token-validate.md) |
151151
| Email | `[email protected]` | Using this email for the request always generates an `optout` response. | [POST&nbsp;/token/generate](post-token-generate.md) |
152152
| Email | `[email protected]` | Using this email for the request always generates an identity response with a `refresh_token` that results in an `optout` response. | [POST&nbsp;/token/refresh](post-token-refresh.md) |

docs/endpoints/post-token-refresh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Here's what you need to know about this endpoint:
3737

3838
| Path Parameter | Data Type | Attribute | Description |
3939
| :--- | :--- | :--- | :--- |
40-
| `{environment}` | string | Required | Integration environment: `https://operator-integ.uidapi.com`<br/>Production environment: The best choice depends on where your users are based. For information about how to choose the best URL for your use case, and a full list of valid base URLs, see [Environments](../getting-started/gs-environments.md).<br/>Notes:<ul><li>The `integ` environment and the `prod` environment require different <Link href="../ref-info/glossary-uid#gl-api-key">API keys</Link>.</li><li>Token expiration time is subject to change, but is always significantly shorter in the `integ` environment than it is in the `prod` environment.</li></ul> |
40+
| `{environment}` | string | Required | Testing (integration) environment: `https://operator-integ.uidapi.com`<br/>Production environment: The best choice depends on where your users are based. For information about how to choose the best URL for your use case, and a full list of valid base URLs, see [Environments](../getting-started/gs-environments.md).<br/>Notes:<ul><li>The `integ` environment and the `prod` environment require different <Link href="../ref-info/glossary-uid#gl-api-key">API keys</Link>.</li><li>Token expiration time is subject to change, but is always significantly shorter in the `integ` environment than it is in the `prod` environment.</li></ul> |
4141

4242
#### Testing Notes
4343

docs/endpoints/post-token-validate.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Link from '@docusaurus/Link';
99

1010
# POST /token/validate
1111

12-
Validates that an advertising token matches the specified hashed or unhashed email address or phone number.
12+
Validates that an advertising token matches the specified hashed or unhashed email address or phone number.
1313

1414
Used by: This endpoint is used mainly by publishers.
1515

@@ -29,7 +29,7 @@ You must encrypt all requests using your secret key. For details, and code examp
2929

3030
| Path Parameter | Data Type | Attribute | Description |
3131
| :--- | :--- | :--- | :--- |
32-
| `{environment}` | string | Required | Integration environment: `https://operator-integ.uidapi.com`<br/>Production environment: The best choice depends on where your users are based. For information about how to choose the best URL for your use case, and a full list of valid base URLs, see [Environments](../getting-started/gs-environments.md). |
32+
| `{environment}` | string | Required | Testing (integration) environment: `https://operator-integ.uidapi.com`<br/>Production environment: The best choice depends on where your users are based. For information about how to choose the best URL for your use case, and a full list of valid base URLs, see [Environments](../getting-started/gs-environments.md). |
3333

3434
:::note
3535
The integration environment and the production environment require different <Link href="../ref-info/glossary-uid#gl-api-key">API keys</Link>.

docs/getting-started/gs-normalization-encoding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ For an example of how to generate email and phone hashes in JavaScript, see [Exa
131131

132132
To check that you're correctly normalizing, hashing, and encoding, you can test with the [UID2 hashing tool](https://unifiedid.com/examples/hashing-tool/).
133133

134-
Choose Email or Phone Number, type or paste the value, and then click Enter.
134+
Choose Email or Phone Number, type or paste the value, and then click **Enter**.
135135

136136
The tool does the following:
137137
- Email: Displays each of the following three values:

docs/sdks/sdk-ref-javascript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ import Link from '@docusaurus/Link';
1111
import ExampleUid2Cookie from '/docs/snippets/_example-uid2-cookie.mdx';
1212
import ExampleJavaScriptInit from '/docs/snippets/_example-javascript-init.mdx';
1313

14-
# SDK for JavaScript Reference Guide
15-
1614
export const New = () => (
1715
<span className='pill'>NEW IN V3</span>
1816
);
1917

18+
# SDK for JavaScript Reference Guide
19+
2020
Use this SDK to facilitate the process of generating or establishing client identity using UID2, retrieving advertising tokens for <Link href="../ref-info/glossary-uid#gl-bidstream">bidstream</Link> use, and automatically refreshing UID2 tokens.
2121

2222
The following sections describe the high-level [workflow](#workflow-overview) for establishing UID2 identity, provide the SDK [API reference](#api-reference), and explain the UID2 [storage format](#uid2-storage-format).

i18n/ja/docusaurus-plugin-content-docs/current/sdks/sdk-ref-javascript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ import Link from '@docusaurus/Link';
1111
import ExampleUid2Cookie from '/docs/snippets/_example-uid2-cookie.mdx';
1212
import ExampleJavaScriptInit from '/docs/snippets/_example-javascript-init.mdx';
1313

14-
# SDK for JavaScript Reference Guide
15-
1614
export const New = () => (
1715
<span className='pill'>NEW IN V3</span>
1816
);
1917

18+
# SDK for JavaScript Reference Guide
19+
2020
この SDK を使用すると、UID2 を使用してクライアントの ID を確立し、Advertising Token を取得するプロセスが容易になります。以下のセクションでは、UID2 ID を確立するための [workflow](#workflow-overview) について説明し、SDK の [API reference](#api-reference) を提供し、UID2の[storage format](#uid2-storage-format)について説明します。
2121

2222
:::tip

0 commit comments

Comments
 (0)