Gemius ID
Module | gemiusIdSystem |
---|---|
EID Source | gemius.com |
bidRequest.userId | gemiusId |
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:
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/.
Gemius ID Configuration
The Gemius ID module does not require any configuration parameters except params.storage
as provided in example
Gemius ID Example
pbjs.setConfig({
userSync: {
userIds: [{
name: 'gemiusId',
storage: {
name: 'pbjs_gemiusId',
type: 'cookie',
expires: 30,
refreshInSeconds: 3600
}
}]
}
});