Skip to content

Commit 2cdec3b

Browse files
committed
minor edits on parity check for 4 SDK docs
1 parent c8fcbfa commit 2cdec3b

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ UID2Manager.shared.getAdvertisingToken()
267267
</TabItem>
268268
</Tabs>
269269

270-
On startup/resumption of the app, if `getAdvertisingToken()` returns `null`, it is time to generate new identity on the server by following the instructions in [Implement Server-Side Token Generation](#implement-server-side-token-generation). Then, pass the result into the mobile app’s UID2Manager again: see [Configure the UID2 mobile SDK](#configure-the-uid2-mobile-sdk).
270+
On startup/resumption of the app, if `getAdvertisingToken()` returns `null`, it is time to generate new identity on the server by following the instructions in [Implement Server-Side Token Generation](#implement-server-side-token-generation). Then, pass the result into the mobile app’s UID2Manager again: see [Configure the UID2 Mobile SDK](#configure-the-uid2-mobile-sdk).
271271

272272
## Enable Logging
273273

docs/sdks/sdk-ref-android.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,15 +126,15 @@ There are two ways to establish an initial UID2 Identity:
126126
127127
1. Generate the UID2 identity using DII&#8212;email (hashed or unhashed) or phone number (hashed or unhashed). For integration instructions, see [Client-Side Integration Guide for Mobile](../guides/integration-mobile-client-side.md).
128128
129-
2. Create a UID2 identity server-side and then pass it into the UID2 SDK. For integration instructions, refer to [Client-Server Integration Guide for Mobile](../guides/integration-mobile-client-server.md).
129+
2. Create a UID2 identity server-side and then pass it into the UID2 SDK. For integration instructions, see [Client-Server Integration Guide for Mobile](../guides/integration-mobile-client-server.md).
130130
131131
The UID2 Mobile SDKs can perform refreshes of UID2 identities, after an Identity is established. This is because the refresh functionality relies on the refresh tokens that are part of the UID2 Identity.
132132
133133
## Code Samples
134134
135135
The following code samples provide examples of performing specific activities relating to managing UID2 with the SDK for Android.
136136
137-
Generate an initial UID2 Identity (refer to [Client-Side Integration Guide for Mobile](../guides/integration-mobile-client-side#configure-the-uid2-mobile-sdk)):
137+
Generate an initial UID2 Identity (see [Client-Side Integration Guide for Mobile](../guides/integration-mobile-client-side#configure-the-uid2-mobile-sdk)):
138138
``` javascript
139139
UID2Manager.getInstance().generateIdentity(
140140
identityRequest: IdentityRequest,
@@ -143,7 +143,7 @@ UID2Manager.getInstance().generateIdentity(
143143
onResult: (GenerateIdentityResult) -> Unit
144144
)
145145
```
146-
Set the UID2 Identity (refer to [Client-Server Integration Guide for Mobile](../guides/integration-mobile-client-server#configure-the-uid2-mobile-sdk)):
146+
Set the UID2 Identity (see [Client-Server Integration Guide for Mobile](../guides/integration-mobile-client-server#configure-the-uid2-mobile-sdk)):
147147
148148
```js
149149
UID2Manager.getInstance().setIdentity(identity: UID2Identity)
@@ -171,7 +171,7 @@ The following functions are available as part of the UID2Manager API:
171171
172172
#### generateIdentity()
173173
174-
Generate a UID2 Identity using <Link href="../ref-info/glossary-uid#gl-dii">Directly identifying information (DII)</Link>. For instructions, see [Configure the UID2 mobile SDK](../guides/integration-mobile-client-side.md#configure-the-uid2-mobile-sdk) in the *Client-Side Integration Guide for Mobile*.
174+
Generate a UID2 Identity using <Link href="../ref-info/glossary-uid#gl-dii">Directly identifying information (DII)</Link>. For instructions, see [Configure the UID2 Mobile SDK](../guides/integration-mobile-client-side.md#configure-the-uid2-mobile-sdk) in the *Client-Side Integration Guide for Mobile*.
175175
176176
#### setIdentity()
177177

docs/sdks/sdk-ref-csharp-dotnet.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ import Link from '@docusaurus/Link';
1111

1212
You can use the SDK for C# / .NET on the server side to encrypt raw UID2s to create UID2 tokens for sharing, and to decrypt UID2 tokens to access the raw UID2.
1313

14+
## Overview
15+
16+
The functions outlined here define the information that you'll need to configure or can retrieve from the library. The parameters and property names defined below are pseudocode. Actual parameters and property names vary by language but will be similar to the information outlined here.
17+
1418
## Functionality
1519

1620
This SDK simplifies integration with UID2 for any DSPs or UID2 sharers who are using C# / .NET for their server-side coding. The following table shows the functions it supports.

docs/sdks/sdk-ref-ios.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ Minimum requirements for this SDK are as follows:
5858

5959
- Xcode version: 15.0+
6060
- iOS minimum target version:
61-
- For full functionality: 13.0+
62-
- For partial functionality: 12.0+. The app with the SDK integrated can be installed with all devices, but generating or retrieving UID2 tokens on the client side will not work with devices running iOS versions below 13.0.
61+
- For full functionality: 13.0+
62+
- For partial functionality: 12.0+. The app with the SDK integrated can be installed with all devices, but generating or retrieving UID2 tokens on the client side will not work with devices running iOS versions below 13.0.
6363
- tvOS minimum target version: 13.0+
6464
- Swift version: 5.0+
6565

@@ -88,7 +88,7 @@ dependencies: [
8888
In the XCode user interface, under Package Dependencies, add the following entry for your apps:
8989

9090
| Name | Location | Dependency Rule |
91-
| :--- | :--- | :--- |
91+
| :--- | :--- | :--- |
9292
| uid2-ios-sdk | `[email protected]:IABTechLab/uid2-ios-sdk.git` | Up to next major version: 1.7.0 < 2.0.0 |
9393

9494
### Installing with CocoaPods
@@ -118,7 +118,7 @@ The UID2 Mobile SDKs can perform refreshes of UID2 identities, after an Identity
118118

119119
The following code samples provide examples of performing specific activities relating to managing UID2 with the SDK for iOS.
120120

121-
Generate an initial UID2 Identity (for instructions, see [Client-Side Integration Guide for Mobile](../guides/integration-mobile-client-side#configure-the-uid2-mobile-sdk)):
121+
Generate an initial UID2 Identity (for instructions, see [Client-Side Integration Guide for Mobile](../guides/integration-mobile-client-side.md#configure-the-uid2-mobile-sdk)):
122122

123123
```js
124124
UID2Manager.shared.generateIdentity(
@@ -156,7 +156,7 @@ The following functions are available as part of the UID2Manager API:
156156
157157
#### generateIdentity()
158158
159-
Generate a UID2 Identity using <Link href="../ref-info/glossary-uid#gl-dii">Directly identifying information (DII)</Link>. For details, see [Configure the UID2 mobile SDK](../guides/integration-mobile-client-side.md#configure-the-uid2-mobile-sdk) in the *Client-Side Integration Guide for Mobile*.
159+
Generate a UID2 Identity using <Link href="../ref-info/glossary-uid#gl-dii">Directly identifying information (DII)</Link>. For details, see [Configure the UID2 Mobile SDK](../guides/integration-mobile-client-side.md#configure-the-uid2-mobile-sdk) in the *Client-Side Integration Guide for Mobile*.
160160
161161
#### setIdentity()
162162

0 commit comments

Comments
 (0)