You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/endpoints/summary-endpoints.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,18 @@ import Link from '@docusaurus/Link';
12
12
13
13
All UID2 endpoints require a client secret for encrypting API requests (except [POST /token/refresh](post-token-refresh.md) requests) and decrypting responses. For details, and code examples in different programming languages, see [Encrypting Requests and Decrypting Responses](../getting-started/gs-encryption-decryption.md).
14
14
15
+
## UID2 Endpoints by Audience
16
+
17
+
The following table shows the UID2 endpoints, with the audience for each. For details, click through to the applicable sections.
Copy file name to clipboardExpand all lines: docs/sdks/summary-sdks.md
+100-7Lines changed: 100 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,15 +18,108 @@ Review the SDK functionality to determine which SDK or SDKs you want to use, the
18
18
19
19
The following table summarizes the functionality available with each SDK.
20
20
21
-
| UID2 SDK for... | Client-Side or Server-Side |Encrypt Raw UID2 to UID2 Token for Sharing | Decrypt UID2 Token to Raw UID2 |Generate UID2 Token from DII | Refresh UID2 Token | Map DII to Raw UID2s*| Monitor Rotated Salt Buckets**|
21
+
<!--| UID2 SDK for... | Client-Side or Server-Side | Generate UID2 Token from DII | Refresh UID2 Token | Map DII to Raw UID2s* | Monitor Rotated Salt Buckets** | Encrypt Raw UID2 to UID2 Token for Sharing | Decrypt UID2 Token to Raw UID2 |
<th colspan="2">Advertiser / Data Provider</th>
37
+
<th colspan="2">DSP</th>
38
+
</tr>
39
+
<tr>
40
+
<th> SDK for...</th>
41
+
<th>Client-Side or Server-Side</th>
42
+
<th>Generate UID2 Token from DII</th>
43
+
<th>Refresh UID2 Token</th>
44
+
<th>Map DII to Raw UID2s*</th>
45
+
<th>Monitor Rotated Salt Buckets**</th>
46
+
<th>Encrypt Raw UID2 to UID2 Token for Sharing</th>
47
+
<th>Decrypt UID2 Token to Raw UID2</th>
48
+
</tr>
49
+
</thead>
50
+
<tbody>
51
+
<tr>
52
+
<td>JavaScript</td>
53
+
<td>Client</td>
54
+
<td>✅</td>
55
+
<td>✅</td>
56
+
<td>—</td>
57
+
<td>—</td>
58
+
<td>—</td>
59
+
<td>—</td>
60
+
</tr>
61
+
<tr>
62
+
<td>Java</td>
63
+
<td>Server</td>
64
+
<td>✅</td>
65
+
<td>✅</td>
66
+
<td>✅</td>
67
+
<td>—</td>
68
+
<td>✅</td>
69
+
<td>✅</td>
70
+
</tr>
71
+
<tr>
72
+
<td>Python</td>
73
+
<td>Server</td>
74
+
<td>✅</td>
75
+
<td>✅</td>
76
+
<td>✅</td>
77
+
<td>✅</td>
78
+
<td>✅</td>
79
+
<td>✅</td>
80
+
</tr>
81
+
<tr>
82
+
<td>C# / .NET</td>
83
+
<td>Server</td>
84
+
<td>—</td>
85
+
<td>—</td>
86
+
<td>—</td>
87
+
<td>—</td>
88
+
<td>✅</td>
89
+
<td>✅</td>
90
+
</tr>
91
+
<tr>
92
+
<td>C++</td>
93
+
<td>Server</td>
94
+
<td>—</td>
95
+
<td>—</td>
96
+
<td>—</td>
97
+
<td>—</td>
98
+
<td>✅</td>
99
+
<td>✅</td>
100
+
</tr>
101
+
<tr>
102
+
<td>Android</td>
103
+
<td>Client (Mobile)</td>
104
+
<td>✅</td>
105
+
<td>✅</td>
106
+
<td>—</td>
107
+
<td>—</td>
108
+
<td>—</td>
109
+
<td>—</td>
110
+
</tr>
111
+
<tr>
112
+
<td>iOS</td>
113
+
<td>Client (Mobile)</td>
114
+
<td>✅</td>
115
+
<td>✅</td>
116
+
<td>—</td>
117
+
<td>—</td>
118
+
<td>—</td>
119
+
<td>—</td>
120
+
</tr>
121
+
</tbody>
122
+
</table>
30
123
31
124
* Advertisers and Data Providers who need to generate raw UID2s from DII can also do this via Snowflake (see [Snowflake Integration Guide](../guides/integration-snowflake.md)) or by using the [POST /identity/map](../endpoints/post-identity-map.md) endpoint.
0 commit comments