Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit edb2018

Browse files
GeneGeniemuuki88
andauthored
MyGaru Id System: initial release (prebid#5040)
* MyGaru initial release * Update dev-docs/modules/userid-submodules/mygaru.md Co-authored-by: Muki Seiler <[email protected]> * Update dev-docs/modules/userid-submodules/mygaru.md Co-authored-by: Muki Seiler <[email protected]> * MyGaru initial release * EU note update --------- Co-authored-by: Muki Seiler <[email protected]>
1 parent 71e9c9e commit edb2018

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
layout: userid
3+
title: MyGaru ID
4+
description: MyGaru User ID sub-module
5+
useridmodule: mygaruIdSystem
6+
---
7+
8+
MyGaru provides single use tokens as a UserId for SSPs and DSP that consume telecom DMP data.
9+
10+
## MyGaru ID Configuration
11+
12+
First, add the AMX ID module to your Prebid.js build:
13+
14+
```shell
15+
gulp build --modules=userId,myGaruIdSystem
16+
```
17+
18+
Then configure the MyGaru id submodule in your `userSync` configuration:
19+
20+
Params configuration is not required.
21+
Mygaru id system is asynchronous and in order to get ids for initial ad auctions you need to add an `auctionDelay` param to your `userSync` config.
22+
_Currently, Mygaru id system does not operate in EU region._
23+
24+
```javascript
25+
pbjs.setConfig({
26+
userSync: {
27+
auctionDelay: 100,
28+
userIds: [{
29+
name: 'mygaruId',
30+
}]
31+
}
32+
});
33+
```
34+
35+
This will add a `userId.mygaru` property to all bidRequests:
36+
37+
```javascript
38+
{
39+
mygaru: 'vatfS0UEgXShEqYuQy0lpzWl7rSuKeNs0U8C8841KoYbFUiyvTpS'
40+
}
41+
```

0 commit comments

Comments
 (0)