-
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
Showing
30 changed files
with
292 additions
and
243 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
Binary file not shown.
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,24 @@ | ||
--- | ||
layout: analytics | ||
title: Piano DMP | ||
description: Piano DMP Analytics Adapter | ||
modulecode: pianoDmp | ||
gdpr_supported: true | ||
usp_supported: false | ||
coppa_supported: false | ||
prebid_member: false | ||
gvl_id: 412 | ||
enable_download: true | ||
--- | ||
|
||
#### Registration | ||
|
||
Please visit [https://piano.io/product/dmp/](https://piano.io/product/dmp/) for more information. | ||
|
||
### Example Configuration | ||
|
||
``` | ||
pbjs.enableAnalytics({ | ||
provider: 'pianoDmp' | ||
}); | ||
``` |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -11,17 +11,18 @@ gdpr_supported: true | |
gvl_id: 259 | ||
usp_supported: true | ||
floors_supported: true | ||
schain_supported: true | ||
--- | ||
|
||
### Note: | ||
|
||
The Adyoulike Header Bidding adaptor requires setup and approval from the Adyoulike team. Please reach out to your account manager or [email protected] for more information. | ||
|
||
### Bid Params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
| Name | Scope | Description | Example | Type | | ||
|-------------|----------|----------------------------------|--------------------------------------|----------| | ||
| `placement` | required | The placement ID from Adyoulike. | `'194f787b85c829fb8822cdaf1ae64435'` | `string` | | ||
|
||
|
||
Same 'placement' parameter can be used from either prebid JS or prebid server. |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
layout: bidder | ||
title: IncrementX | ||
description: Prebid IncrementX Bidder Adaptor | ||
pbjs: true | ||
biddercode: incrementx | ||
media_types: banner | ||
gdpr_supported: true | ||
multiformat_supported: will-bid-on-one | ||
--- | ||
|
||
### Note: | ||
|
||
The IncrementX adapter currently doesn't support multiple sizes per ad placement and will favour the first one if multiple sizes exists. | ||
|
||
### Bid Params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|-------------|----------|--------------------------|-----------------|----------| | ||
| placementId | required | incrementx placement id | `'PNX-HB-123'` | `string` | |
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 |
---|---|---|
|
@@ -19,13 +19,14 @@ Please reach out to <[email protected]> for more information. | |
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|---------------|----------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------|--------------------| | ||
| `placementId` | required | The identifier of the placement, it has to be issued by Kobler. | `'xjer0ch8'` | `string` | | ||
| `zip` | optional | Zip code of the user or the medium. When multiple ad units are submitted together, it is enough to set this parameter on the first one. | `'102 22'` | `string` | | ||
| `test` | optional | Whether the request is for testing only. When multiple ad units are submitted together, it is enough to set this parameter on the first one. Defaults to false. | `true` | `boolean` | | ||
| `test` | optional | Whether the request is for testing only. When multiple ad units are submitted together, it is enough to set this parameter on the first one. Enables providing a custom URL through config.pageUrl. Defaults to false. | `true` | `boolean` | | ||
| `floorPrice` | optional | Floor price in CPM and in USD. Can be used as an alternative to the [Floors module](https://docs.prebid.org/dev-docs/modules/floors.html), which is also supported by this adapter. Defaults to 0. | `5.0` | `float` | | ||
| `position` | optional | The position of the ad unit. Can be used to differentiate between ad units if the same placement ID is used across multiple ad units. The first ad unit should have a position of 0, the second one should have a position of 1 and so on. Defaults to 0. | `1` | `string` | | ||
| `dealIds` | optional | Array of deal IDs. | `['abc328745', 'mxw243253']` | `array of strings` | | ||
|
||
### Implicit parameters | ||
|
||
Kobler identifies the placement using the combination of the page URL and the allowed sizes. As a result, it's important that the correct sizes are provided in `banner.sizes` in order for Kobler to correctly identify the placement. The main, desired format should be the first element of this array. | ||
|
||
### Example | ||
```javascript | ||
const adUnits = [{ | ||
|
@@ -36,17 +37,18 @@ Please reach out to <[email protected]> for more information. | |
} | ||
}, | ||
bids: [{ | ||
bidder: 'kobler', | ||
params: { | ||
placementId: 'k5H7et3R0' | ||
} | ||
bidder: 'kobler' | ||
}] | ||
}]; | ||
``` | ||
|
||
In order to see a sample bid from Kobler (without a proper setup), you have to also do the following: | ||
- Change the [`refererInfo` function](https://github.com/prebid/Prebid.js/blob/master/src/refererDetection.js) to return `'https://www.tv2.no/a/11734615'` as a `page`. This is necessary because Kobler only bids on recognized articles. | ||
- Change the adapter's [`BIDDER_ENDPOINT`](https://github.com/prebid/Prebid.js/blob/master/modules/koblerBidAdapter.js#L8) to `'https://bid-service.dev.essrtb.com/bid/prebid_rtb_call'`. This endpoint belongs to the development server that is set up to always return a bid for the correct `placementId` and page URL combination. | ||
|
||
- Set the `test` parameter to `true`. | ||
- Set `config.pageUrl` to `'https://www.tv2.no/mening-og-analyse/14555348/'`. This is necessary because Kobler only bids on recognized articles. Kobler runs its own test campaign to make sure there is always a bid for this specific page URL. | ||
|
||
|
||
### Example With Optional Parameters | ||
```javascript | ||
|
@@ -60,11 +62,8 @@ In order to see a sample bid from Kobler (without a proper setup), you have to a | |
bids: [{ | ||
bidder: 'kobler', | ||
params: { | ||
placementId: 'k5H7et3R0', | ||
zip: '102 22', | ||
test: true, | ||
floorPrice: 5.0, | ||
position: 1, | ||
dealIds: ['abc328745', 'mxw243253'] | ||
} | ||
}] | ||
|
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
Oops, something went wrong.