-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ace2af3
commit 93ea19e
Showing
1 changed file
with
37 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
layout: analytics | ||
title: R2B2 | ||
description: R2B2 Analytics Adapter | ||
modulecode: r2b2 | ||
prebid_member: false | ||
tcfeu_supported: true | ||
usp_supported: true | ||
coppa_supported: true | ||
gvl_id: 1235 | ||
enable_download: true | ||
--- | ||
|
||
#### About | ||
|
||
The R2B2 Analytics Adapter enables data collection for analysis and reporting purposes. Access to collected data and the ability to start data collection require prior approval from R2B2. For approval, please contact our account team on [email protected]. | ||
Check failure on line 16 in dev-docs/analytics/r2b2.md GitHub Actions / run markdownlintBare URL used
|
||
|
||
#### Analytics Options | ||
|
||
| Name | Scope | Example | Type | Description | | ||
|-----------|----------|-------------|----------|----------------------------------------------------------------| | ||
| `domain` | required | example.com | `string` | R2B2 approved domain where data collection occurs | | ||
| `configId` | optional | 1 | `int` | Identifier for different configurations under the same domain (e.g., 1 for mobile, 2 for desktop) | | ||
| `configVer` | optional | 1 | `int` | Version number for configurations sharing the same `configId` | | ||
|
||
#### Example Configuration | ||
|
||
```js | ||
pbjs.enableAnalytics({ | ||
provider: 'r2b2', | ||
options: { | ||
domain: 'example.com', | ||
configId: 1, | ||
configVer: 1 | ||
} | ||
}); | ||
``` |