-
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 markdownlint-fixes
- Loading branch information
Showing
24 changed files
with
529 additions
and
171 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,13 +27,13 @@ [email protected] for more information. | |
| send_error_data | optional | Adds extra analytics that tracks script runtime errors, bad data and bidders | true | false | boolean | | ||
|
||
### Example Configuration | ||
|
||
Legacy provider code of 'conversant' is still supported | ||
``` | ||
<!-- should be called before requestBids() --> | ||
pbjs.que.push(function(){ | ||
pbjs.enableAnalytics( | ||
{ | ||
provider: 'conversant', | ||
provider: 'epsilon', | ||
options: { | ||
site_id: 108060, | ||
cnvr_sampling: 0.5, | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
layout: bidder | ||
title: Bidgency Group | ||
description: Bidgency Group Bid Adapter | ||
biddercode: bidgency | ||
gdpr_supported: true | ||
usp_supported: true | ||
media_types: video | ||
safeframes_ok: true | ||
deals_supported: false | ||
pbjs: true | ||
pbs: false | ||
floors_supported: true | ||
schain_supported: true | ||
multiformat_supported: will-bid-on-one | ||
userIds: all | ||
sidebarType: 1 | ||
--- | ||
### Note: | ||
|
||
The Bidgency Group adapter requires approval and setup. Please reach out to [email protected] or visit us at [bidgency.com](https://bidgency.com) for more details. | ||
|
||
### Bid Params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|---------------|----------|------------------|-----------------------------|-----------| | ||
| `server` | required | Server endpoint | `https://srv.bidgx.com` | `String` | | ||
| `zone` | required | Zone ID | `73815` | `Integer` | | ||
|
||
#### Video Caching | ||
|
||
Note that the Bidgency Group adapter expects a client-side Prebid Cache to be enabled for video bidding. | ||
|
||
```js | ||
pbjs.setConfig({ | ||
usePrebidCache: true, | ||
cache: { | ||
url: 'https://prebid.adnxs.com/pbc/v1/cache' | ||
} | ||
}); | ||
``` |
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,10 +1,10 @@ | ||
--- | ||
layout: bidder | ||
title: EMX Digital | ||
description: Prebid EMX Digital Bidder Adaptor | ||
title: Cadent Aperture MX | ||
description: Prebid Cadent Aperture MX Bidder Adaptor | ||
pbjs: true | ||
pbs: true | ||
biddercode: emx_digital | ||
biddercode: cadent_aperture_mx | ||
media_types: banner, video | ||
gdpr_supported: true | ||
gvl_id: 183 | ||
|
@@ -15,9 +15,6 @@ userIds: identityLink, uid2 | |
sidebarType: 1 | ||
--- | ||
|
||
{: .alert.alert-warning :} | ||
The emx_digital bidder is deprecated, and will be removed in a future release of Prebid.js and Prebid Server. | ||
|
||
### Registration | ||
|
||
To use this bidder you will need an account and a valid tagid from our exchange. For further information, please contact your Account Manager or [email protected]. | ||
|
@@ -27,5 +24,5 @@ To use this bidder you will need an account and a valid tagid from our exchange. | |
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|-------------------|----------|----------------------------------------------------------------------------------------------------------------------|-----------------------------------------------|------------| | ||
| `tagid` | required | The Tag ID from EMX Digital. | `test1` | `string` | | ||
| `tagid` | required | The Tag ID from Cadent Aperture MX. | `test1` | `string` | | ||
| `bidfloor` | optional | The CPM bid floor | `0.25` | `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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
layout: bidder | ||
title: Conceptx | ||
description: Conceptx bidder adapter | ||
biddercode: conceptx | ||
gdpr_supported: true | ||
usp_supported: false | ||
coppa_supported: false | ||
schain_supported: false | ||
floors_supported: true | ||
media_types: banner | ||
userIds: all | ||
pbjs: true | ||
pbs: false | ||
pbs_app_supported: false | ||
sidebarType: 1 | ||
safeframes_ok: true | ||
--- | ||
|
||
|
||
### Bid Params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|-------------|----------|----------------------------------------------------------------------|----------|----------| | ||
| `siteId` | required | The site ID `'your-page-name'`. | `'your-page-name'` | `string` | | ||
| `adunit` | required | The specific adunit | `'some-id-3'` | `string`| | ||
|
||
|
||
#### Banner example | ||
```js | ||
var adUnits = [ | ||
code: 'your-banner-container-id', | ||
mediaTypes: { | ||
banner: { | ||
sizes: [[930, 180]] | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'conceptx', | ||
params: { | ||
site: "example", adunit: "some-id-3" | ||
} | ||
}] | ||
]; | ||
``` |
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,43 @@ | ||
--- | ||
layout: bidder | ||
title: flipp | ||
description: Prebid Flipp Bidder Adapter | ||
biddercode: flipp | ||
media_types: banner | ||
pbjs: false | ||
pbs: true | ||
gdpr_supported: false | ||
usp_supported: false | ||
coppa_supported: false | ||
schain_supported: false | ||
floors_supported: false | ||
userIds: none | ||
prebid_member: false | ||
safeframes_ok: true | ||
deals_supported: false | ||
pbs_app_supported: false | ||
fpd_supported: false | ||
multiformat_supported: will-not-bid | ||
ortb_blocking_supported: false | ||
--- | ||
|
||
### Bid Params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|---------------|----------|--------------|-----------|----------| | ||
| `publisherNameIdentifier` | required | Publisher name identifier | `test-publisher-name` | `string` | | ||
| `creativeType` | required | Type of the creative | `NativeX` | `NativeX\|DTX` | | ||
| `siteId` | required | ID associated with the site | `123456` | `integer` | | ||
| `zoneIds` | optional | Zones to request from bidder | `[789, 123]` | `array[integer]` | | ||
| `userKey` | optional | User Key to power experience optimization and frequency capping. Publishers: please confirm with legal counsel before using this feature. | `4188d8a3-22d1-49cb-8624-8838a22562bd` | `uuidv4` | | ||
| `options` | optional | Additional integration specific context | `options: { "startCompact": true }` | `map[string]interface{}` | | ||
|
||
Current available integration options are as follows: | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|---------------|----------|--------------|-----------|----------| | ||
| `startCompact` | optional | Height of the experience will be reduced | `true` | `boolean` | | ||
| `dwellExpand` | optional | Auto expand the experience after a certain time passes | `true` | `boolean` | | ||
| `contentCode` | optional | Force show a certain experience. Generally used for testing and debugging purposes. | `publisher-test` | `string` | |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
layout: bidder | ||
title: Motorik | ||
description: Prebid Motorik Bidder Adaptor | ||
biddercode: motorik | ||
gdpr_supported: true | ||
usp_supported: true | ||
coppa_supported: true | ||
schain_supported: true | ||
media_types: banner, video, native | ||
safeframes_ok: true | ||
deals_supported: true | ||
pbjs: true | ||
pbs: true | ||
sidebarType: 1 | ||
floors_supported: true | ||
prebid_member: false | ||
fpd_supported: false | ||
gvl_id: none | ||
multiformat_supported: will-bid-on-one | ||
ortb_blocking_supported: true | ||
userIds: all | ||
--- | ||
|
||
### Note: | ||
|
||
The Example Bidding adapter requires setup before beginning. Please contact us at [email protected]. | ||
Motorik will only respond to the first impression. Multiple ad formats in single request are not supported. | ||
|
||
### Bid Params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|---------------|----------|-----------------------|-----------|-----------| | ||
| `placementId` | required | placement id | `'a7402708185f6a0c00700fd21c4260d2'` | `string` | | ||
| `accountId` | required | account id | `'motorikTest'` | `string` | |
Oops, something went wrong.