From fbbcd4e01dde49c5586cce1967f7eddefea5cb35 Mon Sep 17 00:00:00 2001 From: mefjush Date: Wed, 23 Jan 2019 19:24:19 +0100 Subject: [PATCH] Docs for new Adhese adapter (#1063) * Add Adhese adapter docs * Add banner media type * Use the bid parameters pointing to the existing demo position --- dev-docs/bidders/adhese.md | 59 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 dev-docs/bidders/adhese.md diff --git a/dev-docs/bidders/adhese.md b/dev-docs/bidders/adhese.md new file mode 100644 index 0000000000..565b81dabb --- /dev/null +++ b/dev-docs/bidders/adhese.md @@ -0,0 +1,59 @@ +--- +layout: bidder +title: Adhese +description: Prebid Adhese Bidder Adaptor +top_nav_section: dev_docs +nav_section: reference +hide: true +biddercode: adhese +biddercode_longer_than_12: false +prebid_1_0_supported: true +media_types: banner, video +gdpr_supported: true +--- + +### Note +The Adhese bid adapter may require an additional setup from the Adhese team, even for existing Adhese customers. Please reach out to your support team or info@adhese.com for more information. + +### bid params + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|---------------|----------|--------------------|------------------------------|----------| +| `account` | required | Adhese account name | `'demo'` | `string` | +| `location` | required | Adhese location name | `'_adhese_prebid_demo_'` | `string` | +| `format` | required | Adhese format name | `'leaderboard'` | `string` | +| `data` | optional | Custom target data | `{ 'ci': [9000, 9050] }` | `object` | + +### Configuration + +Adhese supports 'iframe' UserSync configuration only. + +For Prebid.js v1.15.0 and later: + +```javascript +pbjs.setConfig({ + userSync: { + filterSettings: { + iframe: { + bidders: '*', // '*' represents all bidders + filter: 'include' + } + } + } +}); +``` + +For Prebid.js v1.14.0 and before: + +```javascript +pbjs.setConfig({ + userSync: { + iframeEnabled: true, + enabledBidders: ['adhese'] + }}); +``` + +Note: Combine the above the configuration with any other UserSync configuration. Multiple setConfig() calls overwrite each other and only last call for a given attribute will take effect. + +