Skip to content

Commit af2ff52

Browse files
committed
Merge branch 'main' into ans-UID2-deprecation-docs-abort-and-isIdentityAvailable
2 parents 56ba24c + 301b544 commit af2ff52

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

docs/getting-started/gs-encryption-decryption.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ This section includes encryption and decryption code examples in different progr
113113
For the [POST /token/refresh](../endpoints/post-token-refresh.md) endpoint, the code takes the values for `refresh_token` and `refresh_response_key` that were obtained from a prior call to [POST /token/generate](../endpoints/post-token-generate.md) or [POST /token/refresh](../endpoints/post-token-refresh.md).
114114

115115
:::note
116-
For Windows, if you're using Windows Command Prompt instead of PowerShell, you must also remove the single quotes surrounding the JSON. For example, use `echo {"email": "[email protected]"}`.
116+
For Windows, if you're using Windows Command Prompt instead of PowerShell, you must also remove the single quotes surrounding the JSON. For example, use `echo {"email": "[email protected]", "optout_check": 1}`.
117117
:::
118118

119119
### Prerequisites and Notes
@@ -227,7 +227,7 @@ Usage:
227227
echo '<json>' | python3 uid2_request.py <url> <api_key> <client_secret>
228228
229229
Example:
230-
echo '{"email": "[email protected]"}' | python3 uid2_request.py https://prod.uidapi.com/v2/token/generate PRODGwJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg= wJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg=
230+
echo '{"email": "[email protected]", "optout_check": 1}' | python3 uid2_request.py https://prod.uidapi.com/v2/token/generate PRODGwJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg= wJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg=
231231
232232
233233
Refresh Token Usage:
@@ -355,7 +355,7 @@ public class Uid2Request {
355355
+ "java -jar Uid2Request-jar-with-dependencies.jar <url> <api_key> <client_secret>" + "\n\n"
356356

357357
+ "Example:" + "\n "
358-
+ "echo '{\"email\": \"[email protected]\"}' | java -jar Uid2Request-jar-with-dependencies.jar https://prod.uidapi.com/v2/token/generate PRODGwJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg= wJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg=" + "\n\n\n"
358+
+ "echo '{\"email\": \"[email protected]\", \"optout_check\": 1}' | java -jar Uid2Request-jar-with-dependencies.jar https://prod.uidapi.com/v2/token/generate PRODGwJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg= wJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg=" + "\n\n\n"
359359

360360
+ "Refresh Token Usage:" + "\n "
361361
+ "java -jar Uid2Request-jar-with-dependencies.jar <url> --refresh-token <refresh_token> <refresh_response_key>" + "\n\n"
@@ -465,7 +465,7 @@ Usage:
465465
echo '<json>' | .\uid2_request <url> <api_key> <client_secret>
466466
467467
Example:
468-
echo '{"email": "[email protected]"}' | .\uid2_request https://prod.uidapi.com/v2/token/generate UID2-C-L-999-fCXrMM.fsR3mDqAXELtWWMS+xG1s7RdgRTMqdOH2qaAo= wJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg=
468+
echo '{"email": "[email protected]", "optout_check": 1}' | .\uid2_request https://prod.uidapi.com/v2/token/generate UID2-C-L-999-fCXrMM.fsR3mDqAXELtWWMS+xG1s7RdgRTMqdOH2qaAo= wJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg=
469469
470470
471471
Refresh Token Usage:

docs/portal/api-keys.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import Link from '@docusaurus/Link';
1010
# API Keys
1111

1212
:::note
13-
These instructions are for client-server or server-side implementations. If your UID2 implementation will be client-side, or visible to the public in any way, you'll need to set up different values. For details, see [Client-Side Integration](client-side-integrations.md).
13+
These instructions are for client-server or server-side implementations. If your UID2 implementation will be client-side, or visible to the public in any way, you'll need to set up different values. For details, see [Client-Side Integration](client-side-integration.md).
1414
:::
1515

1616
In the UID2 Portal, on the **API Keys** page, you can perform all activities relating to managing the API keys for your UID2 account, including the following:

i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-encryption-decryption.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ UID2 API のリクエストレスポンスワークフローは、以下のス
113113
[POST&nbsp;/token/refresh](../endpoints/post-token-refresh.md) エンドポイントでは、[POST&nbsp;/token/generate](../endpoints/post-token-generate.md) または [POST&nbsp;/token/refresh](../endpoints/post-token-refresh.md) へのコールで事前に取得した `refresh_token``refresh_response_key` の値を使用します。
114114

115115
:::note
116-
Windows の場合、PowerShell の代わりに Windows コマンドプロンプトを使用している場合は、JSON を囲むシングルクォートも削除する必要があります。例えば、`echo {"email": "[email protected]"}` とします。
116+
Windows の場合、PowerShell の代わりに Windows コマンドプロンプトを使用している場合は、JSON を囲むシングルクォートも削除する必要があります。例えば、`echo {"email": "[email protected]", "optout_check": 1}` とします。
117117
:::
118118

119119
### Prerequisites and Notes
@@ -227,7 +227,7 @@ Usage:
227227
echo '<json>' | python3 uid2_request.py <url> <api_key> <client_secret>
228228
229229
Example:
230-
echo '{"email": "[email protected]"}' | python3 uid2_request.py https://prod.uidapi.com/v2/token/generate PRODGwJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg= wJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg=
230+
echo '{"email": "[email protected]", "optout_check": 1}' | python3 uid2_request.py https://prod.uidapi.com/v2/token/generate PRODGwJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg= wJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg=
231231
232232
233233
Refresh Token Usage:
@@ -355,7 +355,7 @@ public class Uid2Request {
355355
+ "java -jar Uid2Request-jar-with-dependencies.jar <url> <api_key> <client_secret>" + "\n\n"
356356

357357
+ "Example:" + "\n "
358-
+ "echo '{\"email\": \"[email protected]\"}' | java -jar Uid2Request-jar-with-dependencies.jar https://prod.uidapi.com/v2/token/generate PRODGwJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg= wJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg=" + "\n\n\n"
358+
+ "echo '{\"email\": \"[email protected]\",\"optout_check\": 1}' | java -jar Uid2Request-jar-with-dependencies.jar https://prod.uidapi.com/v2/token/generate PRODGwJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg= wJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg=" + "\n\n\n"
359359

360360
+ "Refresh Token Usage:" + "\n "
361361
+ "java -jar Uid2Request-jar-with-dependencies.jar <url> --refresh-token <refresh_token> <refresh_response_key>" + "\n\n"
@@ -465,7 +465,7 @@ Usage:
465465
echo '<json>' | .\uid2_request <url> <api_key> <client_secret>
466466
467467
Example:
468-
echo '{"email": "[email protected]"}' | .\uid2_request https://prod.uidapi.com/v2/token/generate UID2-C-L-999-fCXrMM.fsR3mDqAXELtWWMS+xG1s7RdgRTMqdOH2qaAo= wJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg=
468+
echo '{"email": "[email protected]", "optout_check": 1}' | .\uid2_request https://prod.uidapi.com/v2/token/generate UID2-C-L-999-fCXrMM.fsR3mDqAXELtWWMS+xG1s7RdgRTMqdOH2qaAo= wJ0hP19QU4hmpB64Y3fV2dAed8t/mupw3sjN5jNRFzg=
469469
470470
471471
Refresh Token Usage:
@@ -821,4 +821,4 @@ Refresh Token Usage example:
821821
```
822822
</TabItem>
823823

824-
</Tabs>
824+
</Tabs>

0 commit comments

Comments
 (0)