Skip to content

Commit 4c7b994

Browse files
authored
Add Gemius ID submodule documentation. (#6191)
1 parent 854f390 commit 4c7b994

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
layout: userid
3+
title: Gemius ID
4+
description: Gemius ID User ID sub-module
5+
useridmodule: gemiusIdSystem
6+
bidRequestUserId: gemiusId
7+
eidsource: gemius.com
8+
example: '"1111"'
9+
---
10+
11+
The Gemius ID submodule enables publishers to access the RUID identifier provided by gemius.com
12+
within the Prebid.js ecosystem.
13+
14+
Add support for Gemius ID to your Prebid.js package using:
15+
16+
```bash
17+
gulp build --modules=userId,gemiusIdSystem
18+
```
19+
20+
## Gemius ID Registration
21+
22+
This submodule requires a script provided by gemius.com. For more information, please contact us at: [https://gemius.com/contact/](https://gemius.com/contact/).
23+
24+
## Gemius ID Configuration
25+
26+
The Gemius ID module does not require any configuration parameters except `params.storage` as provided in example
27+
28+
## Gemius ID Example
29+
30+
```javascript
31+
pbjs.setConfig({
32+
userSync: {
33+
userIds: [{
34+
name: 'gemiusId',
35+
storage: {
36+
name: 'pbjs_gemiusId',
37+
type: 'cookie',
38+
expires: 30,
39+
refreshInSeconds: 3600
40+
}
41+
}]
42+
}
43+
});
44+
```

0 commit comments

Comments
 (0)