-
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.
Merge branch 'master' into qortex-rtd-md-pr
- Loading branch information
Showing
29 changed files
with
1,344 additions
and
355 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,2 @@ | ||
{: .alert.alert-warning :} | ||
Disclosure: This module loads external code that is not open source and has not been reviewed by Prebid.org. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
layout: bidder | ||
title: C1X | ||
description: Prebid C1X Bidder Adaptor | ||
pbs: false | ||
pbjs: true | ||
biddercode: c1x | ||
media_types: banner | ||
tcfeu_supported: false | ||
pbs_app_supported: false | ||
enable_download: true | ||
--- | ||
|
||
### Note | ||
|
||
The C1X Header Bidding adaptor requires approval from the C1X team. Please reach out to <header-bidding@c1exchange.com> for more information. | ||
|
||
### Bid params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|----------------|----------|-----------------------------------------------------------------|-------------------------------------|----------| | ||
| `placementId` | required | Placement ID | `'12345'` | `string` | | ||
| `siteId` | required | Site ID from which the request is originating | `'999'` | `string` | | ||
| `dealId` | optional | Deal ID to get the specific deal from our DSP | `'123456'` | `string` | | ||
| `floorPriceMap`| optional | Minimum floor prices needed from the DSP's to enter the auction | `{"300x250": 4.00,"300x600": 3.00}` | `object` | | ||
| `pageurl` | optional | Url of the webpage where the request is originating from | `'www.example.com'` | `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
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,70 @@ | ||
--- | ||
layout: bidder | ||
title: Illumin | ||
description: Prebid Illumin Bidder Adaptor | ||
biddercode: illumin | ||
filename: illuminBidAdapter | ||
userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId | ||
tcfeu_supported: true | ||
usp_supported: true | ||
coppa_supported: false | ||
schain_supported: true | ||
gpp_supported: true | ||
floors_supported: true | ||
media_types: banner, video | ||
prebid_member: false | ||
safeframes_ok: false | ||
deals_supported: false | ||
pbs_app_supported: false | ||
fpd_supported: false | ||
ortb_blocking_supported: false | ||
multiformat_supported: will-bid-on-one | ||
pbjs: true | ||
sidebarType: 1 | ||
--- | ||
|
||
### Bid Params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|------------|----------|-------------------------------------------------------------------------------------------|------------------------------|----------| | ||
| `cId` | required | The connection ID from Illumin. | `'562524b21b1c1f08117fc7f9'` | `string` | | ||
| `pId` | required | The publisher ID from Illumin. | `'59ac17c192832d0011283fe3'` | `string` | | ||
| `bidFloor` | optional | The minimum bid value desired. Illumin will not respond with bids lower than this value. | `0.90` | `float` | | ||
|
||
## Example | ||
|
||
```javascript | ||
var adUnits = [{ | ||
code: 'banner-div', | ||
mediaTypes: { | ||
banner: { | ||
sizes: [ | ||
[300, 250], | ||
[728, 90] | ||
] | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'illumin', | ||
params: { | ||
cId: '562524b21b1c1f08117fc7f9', // Required - PROVIDED DURING SETUP... | ||
pId: '59ac17c192832d0011283fe3', // Required - PROVIDED DURING SETUP... | ||
bidFloor: 1.23 // Optional | ||
} | ||
}] | ||
} | ||
]; | ||
|
||
// configure pbjs to enable user syncing | ||
pbjs.setConfig({ | ||
userSync: { | ||
filterSettings: { | ||
iframe: { | ||
bidders: 'illumin', | ||
filter: 'include' | ||
} | ||
} | ||
} | ||
}); | ||
``` |
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
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
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
Oops, something went wrong.