-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mobian Bid Adapter : push context data to GAM (#12389)
* Push context data to GAM * Update browsi to set gpt key values * fix browsi * Revamps module to make it configurable * Revamps module and tests, adds config * Adds more config and documentation * Updates mock emotion --------- Co-authored-by: Demetrio Girardi <[email protected]>
- Loading branch information
Showing
5 changed files
with
406 additions
and
284 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
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
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 |
---|---|---|
@@ -1,11 +1,41 @@ | ||
# Overview | ||
# Mobian Rtd Provider | ||
|
||
## Overview | ||
|
||
Module Name: Mobian Rtd Provider | ||
Module Type: Rtd Provider | ||
Maintainer: [email protected] | ||
|
||
# Description | ||
## Description | ||
|
||
RTD provider for themobian Brand Safety determinations. Publishers | ||
should use this to get Mobian's GARM Risk evaluations for | ||
a URL. | ||
|
||
## Configuration | ||
|
||
```js | ||
pbjs.setConfig({ | ||
realTimeData: { | ||
dataProviders: [{ | ||
name: 'mobianBrandSafety', | ||
params: { | ||
// Prefix for the targeting keys (default: 'mobian') | ||
prefix: 'mobian', | ||
|
||
// Enable targeting keys for advertiser data | ||
advertiserTargeting: true, | ||
// Or set it as an array to pick specific targeting keys: | ||
// advertiserTargeting: ['genres', 'emotions', 'themes'], | ||
// Available values: 'apValues', 'categories', 'emotions', 'genres', 'risk', 'sentiment', 'themes', 'tones' | ||
|
||
// Enable targeting keys for publisher data | ||
publisherTargeting: true, | ||
// Or set it as an array to pick specific targeting keys: | ||
// publisherTargeting: ['tones', 'risk'], | ||
// Available values: 'apValues', 'categories', 'emotions', 'genres', 'risk', 'sentiment', 'themes', 'tones' | ||
} | ||
}] | ||
} | ||
}); | ||
``` |
Oops, something went wrong.