Skip to content

Commit eea73a2

Browse files
committed
minor mods from EUID parity check on SDK docs
1 parent f3391c9 commit eea73a2

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

docs/sdks/sdk-ref-java.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ If you're using the SDK's HTTP implementation, follow these steps.
147147
- --> Always apply `doNotGenerateTokensForOptedOut()`. This applies a parameter similar to setting `optout_check=1` in the call to the POST /token/generate endpoint (see [Unencrypted JSON Body Parameters](../endpoints/post-token-generate.md#unencrypted-json-body-parameters)).
148148
:::
149149

150-
<!-- uid2_euid_diff re legal basis for admonition above (first bullet not in UID2) -->
150+
<!-- uid2_euid_diff re legal basis for admonition above (first bullet not in UID2) -->
151151

152152
#### Basic Usage, Client-Server Integration
153153

@@ -295,6 +295,7 @@ If you're using server-side integration (see [Publisher Integration Guide, Serve
295295
If the user has opted out, this method returns null, indicating that the user's identity should be removed from the session. To confirm optout, you can use the `tokenRefreshResponse.isOptout()` function.
296296

297297
## Usage for Advertisers/Data Providers
298+
298299
1. Create an instance of IdentityMapClient as an instance variable.
299300
```java
300301
final private IdentityMapClient identityMapClient = new IdentityMapClient(UID2_BASE_URL, UID2_API_KEY, UID2_SECRET_KEY);

docs/sdks/sdk-ref-javascript-v2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ As part of the SDK [initialization](#initopts-object-void), a token auto-refresh
103103

104104
Here's what you need to know about the token auto-refresh:
105105

106-
- Only one call to the [POST&nbsp;/token/refresh](../endpoints/post-token-refresh.md) endpoint call can be active at a time.
106+
- Only one call to the [POST&nbsp;/token/refresh](../endpoints/post-token-refresh.md) endpoint call can be active at a time.
107107
- If the [POST&nbsp;/token/refresh](../endpoints/post-token-refresh.md) response is unsuccessful because the user has opted out, or because the refresh token has expired, this suspends the background auto-refresh process. To use UID2-based targeted advertising again, you must obtain the email or phone number from the consumer ([isLoginRequired()](#isloginrequired-boolean) returns `true`). In all other cases, auto-refresh attempts continue in the background.
108108
- The [callback function](#callback-function) specified during the SDK initialization is invoked in the following cases:
109109
- After each successful refresh attempt.
@@ -229,7 +229,7 @@ If the identity is not available, use the [isLoginRequired()](#isloginrequired-b
229229

230230
Gets the current advertising token.
231231

232-
Before calling this function, be sure to call [init()](#initopts-object-void) and wait until the callback you supply has been invoked, as shown in the following example.
232+
Before calling this function, be sure to call [init()](#initopts-object-void) and wait until the callback you supply has been invoked, as shown in the following example.
233233

234234
```html
235235
<script>

docs/sdks/sdk-ref-javascript.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -330,9 +330,7 @@ There are two exceptions to this functionality:
330330
2. For every subsequent callback function passed, the function is added to the existing array of callbacks using the [Array Push Pattern](#array-push-pattern).
331331

332332
:::note
333-
334333
If `useCookie` is updated, the location of the identity changes. For example, if the value is updated from `true` to `false`, the first-party cookie is removed and the identity is added to local storage.
335-
336334
:::
337335

338336
### Init Config
@@ -362,7 +360,7 @@ If you have already built an integration using a legacy callback function, you c
362360

363361
### getAdvertisingToken(): string
364362

365-
Gets the current advertising token. This function can be called without `init()` and returns the token if it is stored in local storage or a first-party cookie.
363+
Gets the current advertising token. This function can be called without `init()` and returns the token if it is stored in local storage or a first-party cookie.
366364

367365
```html
368366
<script>

docs/sdks/sdk-ref-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Decryption response codes, and their meanings, are shown in the following table.
146146
Be sure to call this function only when you have a legal basis to convert the user’s <Link href="../ref-info/glossary-uid#gl-dii">directly identifying information (DII)</Link> to UID2 tokens for targeted advertising.
147147
:::
148148
149-
<!-- uid2_euid_diff re legal basis for admonition above (not in UID2) -->
149+
<!-- uid2_euid_diff re legal basis for admonition above (not in UID2) -->
150150

151151
`do_not_generate_tokens_for_opted_out()` applies `optout_check=1` in the [POST&nbsp;/token/generate](../endpoints/post-token-generate.md) call. Without this, `optout_check` is omitted to maintain backwards compatibility.
152152

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ Decryption response codes, and their meanings, are shown in the following table.
151151
Be sure to call this function only when you have a legal basis to convert the user’s <Link href="../ref-info/glossary-uid#gl-dii">directly identifying information (DII)</Link> to UID2 tokens for targeted advertising.
152152
:::
153153
154-
<!-- uid2_euid_diff re legal basis for admonition above (not in UID2) -->
154+
<!-- uid2_euid_diff re legal basis for admonition above (not in UID2) -->
155155

156156
`do_not_generate_tokens_for_opted_out()` は、[POST&nbsp;/token/generate](../endpoints/post-token-generate.md) の呼び出しに `optout_check=1` を適用します。これを行わないと、後方互換性が維持を維持するために `optout_check` が省略されます。
157157

0 commit comments

Comments
 (0)