Skip to main content

SDK for C# / .NET (Server-Side) Reference Guide

You can use the SDK for C# / .NET on the server side to facilitate decrypting of EUID tokens to access the raw EUID.

Overview

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.

Functionality

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

Encrypt Raw EUID to EUID TokenDecrypt EUID Token to Raw EUIDGenerate EUID Token from Personal DataRefresh EUID TokenMap Personal Data to Raw EUIDsMonitor Rotated Salt Buckets

API Permissions

To use this SDK, you'll need to complete the EUID account setup by following the steps described in the Account Setup page.

You'll be granted permission to use specific functions offered by the SDK, and given credentials for that access. Bear in mind that there might be functions in the SDK that you don't have permission to use.

For details, see API Permissions.

Version

The library uses .NET Standard 2.1. unit tests. The sample app uses .NET 5.0.

GitHub Repository/Binary

This SDK is in the following open-source GitHub repository:

The binary is published in this location:

Initialization

The initialization function configures the parameters necessary for the SDK to authenticate with the EUID service. It also allows you to configure retry intervals in the event of errors.

ParameterDescriptionRecommended Value
endpointThe endpoint for the EUID service.N/A
authKeyThe authentication token that belongs to the client. For access to EUID, see Contact Info.N/A
secretKeyThe client secret. See EUID Credentials.

Interface

The BidstreamClient class allows you to decrypt EUID tokens into raw EUIDs.

The interface allows you to decrypt EUID advertising tokens and return the corresponding raw EUID.

note

When you use an SDK, you do not need to store or manage decryption keys.

If you're a DSP, for bidding, call the interface to decrypt an EUID advertising token and return the EUID. For details on the bidding logic for handling user opt-outs, see DSP Integration Guide.

The following is the decrypt method in C#:

using UID2.Client.IUID2Client

var client = EUIDClientFactory.Create(_baseUrl, _authKey, _secretKey);
client.Refresh(); //Note that Refresh() should be called once after create(), and then once per hour
var result = client.Decrypt(_advertisingToken);

Response Content

Available information returned through the SDK is outlined in the following table.

PropertyDescription
StatusThe decryption result status. For a list of possible values and definitions, see Response Statuses.
UidThe raw EUID for the corresponding EUID advertising token.
EstablishedThe timestamp indicating when a user first established the EUID with the publisher.

Response Statuses

ValueDescription
SuccessThe EUID advertising token was decrypted successfully and a raw EUID was returned.
NotAuthorizedForKeyThe requester does not have authorization to decrypt this EUID advertising token.
NotInitializedThe client library is waiting to be initialized.
InvalidPayloadThe incoming EUID advertising token is not a valid payload.
ExpiredTokenThe incoming EUID advertising token has expired.
KeysNotSyncedThe client has failed to synchronize keys from the EUID service.
VersionNotSupportedThe client library does not support the version of the encrypted token.

FAQs

For a list of frequently asked questions for DSPs, see FAQs for DSPs.