forked from prebid/prebid.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New User ID submodule: Rewarded Interest (prebid#5660)
* UserID submodule: rewardedInterestIdSystem * rewardedInterest: wording update * UserID submodule: rewardedInterestIdSystem - fixed styles --------- Co-authored-by: Konstantin Mikhalyov <konstantin.mikhalyov@postindustria.com> Co-authored-by: Eugene Dorfman <eugene.dorfman@gmail.com>
- Loading branch information
1 parent
7e79420
commit 84c630e
Showing
2 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
layout: userid | ||
title: Rewarded Interest ID | ||
description: Rewarded Interest User ID Submodule | ||
useridmodule: rewardedInterestIdSystem | ||
--- | ||
|
||
[Rewarded Interest](https://www.rewardedinterest.com/) is an identity provider that enables users to monetize and manage the exposure of their identity to various ad providers through the Rewarded Interest browser extension. | ||
|
||
This submodule passes the Rewarded Interest Identity Token, obtained from the browser extension, into the oRTB request. The Identity Token is included only if the browser has the Rewarded Interest extension installed, and the user has authorized it to share the token. | ||
|
||
The Rewarded Interest Identity Token itself does not reveal the user's identity, as it is encrypted and refreshed frequently. Rewarded Interest partners (such as DSPs, SSPs, and publishers) can use the Rewarded Interest Identity Resolution API to resolve the Identity Token into a CMAID (Consumer Mediated Advertising Identifier). The CMAID is a durable, cross-site, cross-device advertising identifier that remains consistent across visits and devices enrolled by a Rewarded Interest user, unless they choose to reset or pause it. | ||
|
||
Add this submodule to your Prebid.js wrapper with: | ||
|
||
{: .alert.alert-info :} | ||
gulp build --modules=userId,rewardedInterestIdSystem | ||
|
||
## Rewarded Interest ID Configuration | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Param under usersync.userIds[] | Scope | Type | Description | Example | | ||
|--------------------------------|----------|--------|--------------------------|------------------------| | ||
| name | Required | String | The name of this module. | `"rewardedInterestId"` | | ||
|
||
## Rewarded Interest ID Example | ||
|
||
```javascript | ||
pbjs.setConfig({ | ||
userSync: { | ||
userIds: [{ | ||
name: "rewardedInterestId" | ||
}] | ||
} | ||
}) | ||
``` |