Skip to content

Add Gemius ID submodule documentation. #6191

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions dev-docs/modules/userid-submodules/gemius.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---
layout: userid
title: Gemius ID
description: Gemius ID User ID sub-module
useridmodule: gemiusIdSystem
bidRequestUserId: gemiusId
eidsource: gemius.com
example: '"1111"'
---

The Gemius ID submodule enables publishers to access the RUID identifier provided by gemius.com
within the Prebid.js ecosystem.

Add support for Gemius ID to your Prebid.js package using:

```bash
gulp build --modules=userId,gemiusIdSystem
```

## Gemius ID Registration

This submodule requires a script provided by gemius.com. For more information, please contact us at: [https://gemius.com/contact/](https://gemius.com/contact/).

## Gemius ID Configuration

The Gemius ID module does not require any configuration parameters except `params.storage` as provided in example

## Gemius ID Example

```javascript
pbjs.setConfig({
userSync: {
userIds: [{
name: 'gemiusId',
storage: {
name: 'pbjs_gemiusId',
type: 'cookie',
expires: 30,
refreshInSeconds: 3600
}
}]
}
});
```