-
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
56 changed files
with
554 additions
and
73 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 |
---|---|---|
@@ -0,0 +1,119 @@ | ||
--- | ||
layout: bidder | ||
title: Akcelo | ||
description: Prebid Akcelo Bidder Adapter | ||
biddercode: akcelo | ||
pbjs: true | ||
pbs: false | ||
gvl_id: none | ||
tcfeu_supported: false | ||
usp_supported: false | ||
userIds: all | ||
media_types: banner, native, video | ||
coppa_supported: false | ||
schain_supported: true | ||
dchain_supported: false | ||
safeframes_ok: true | ||
deals_supported: false | ||
floors_supported: true | ||
fpd_supported: true | ||
ortb_blocking_supported: false | ||
multiformat_supported: will-bid-on-any | ||
privacy_sandbox: no | ||
sidebarType: 1 | ||
--- | ||
|
||
### Registration | ||
|
||
The Akcelo bidder adapter requires setup and approval from the Akcelo service 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 | | ||
|------------|----------|--------------------------------------------------------------------------|---------|-----------| | ||
| `siteId` | required | The identifier of the site. Will be provided by your account manager. | `763` | `integer` | | ||
| `adUnitId` | required | The identifier of the ad unit. Will be provided by your account manager. | `7965` | `integer` | | ||
| `test` | optional | Whether to display test creatives or not. Default is 0. | `1` | `integer` | | ||
|
||
### Configuration Example | ||
|
||
```html | ||
|
||
<script> | ||
const adUnits = [ | ||
{ | ||
code: 'div-123', | ||
mediaTypes: { | ||
banner: { | ||
sizes: [ | ||
[300, 250], | ||
[300, 600], | ||
], | ||
}, | ||
video: { | ||
context: "outstream", | ||
playerSize: [[640, 480]], | ||
mimes: ['video/mp4'], | ||
protocols: [1, 2, 3, 4, 5, 6, 7, 8], | ||
playbackmethod: [1], | ||
skip: 1, | ||
api: [2], | ||
minbitrate: 1000, | ||
maxbitrate: 3000, | ||
minduration: 3, | ||
maxduration: 10, | ||
startdelay: 2, | ||
placement: 4, | ||
linearity: 1 | ||
}, | ||
}, | ||
bids: [ | ||
{ | ||
bidder: 'akcelo', | ||
params: { | ||
siteId: 763, // required | ||
adUnitId: 7965, // required | ||
test: 1, // optional | ||
}, | ||
}, | ||
], | ||
}, | ||
]; | ||
pbjs.que.push(function () { | ||
pbjs.addAdUnits(adUnits); | ||
}); | ||
</script> | ||
``` | ||
|
||
### User Sync | ||
|
||
Akcelo strongly recommends enabling user syncing through iFrames. This functionality | ||
improves DSP user match rates and increases the bid rate and bid price. | ||
|
||
```js | ||
// https://docs.prebid.org/dev-docs/publisher-api-reference/setConfig.html#setConfig-Configure-User-Syncing | ||
pbjs.setConfig({ | ||
userSync: { | ||
filterSettings: { | ||
iframe: { | ||
bidders: ['akcelo'], | ||
filter: 'include', | ||
}, | ||
}, | ||
}, | ||
}); | ||
``` | ||
|
||
### First Party Data | ||
|
||
Akcelo supports both `ortb2` and `ortb2Imp` methods to set [First Party Data](/features/firstPartyData.html). | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|-------------------|----------|-------------------------------------------------------------------------------------------------|-------------------|----------------| | ||
| `ortb2.site` | optional | Information about the publisher's website provided through an OpenRTB Site object. | N/A | `object` | | ||
| `ortb2.user` | optional | Information about the advertising device's human user, provided through an OpenRTB User object. | N/A | `object` | | ||
| `ortb2.device` | optional | Information about the user's device provided through an OpenRTB device object. | N/A | `object` | |
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,36 @@ | ||
--- | ||
layout: bidder | ||
title: UrekaMedia | ||
description: UrekaMedia Bidder Adaptor | ||
biddercode: urekamedia | ||
pbjs: true | ||
pbs: false | ||
media_types: banner, native, video | ||
gvl_id: 14 (adkernel) | ||
tcfeu_supported: true | ||
usp_supported: true | ||
coppa_supported: true | ||
gpp_supported: true | ||
pbs_app_supported: true | ||
schain_supported: true | ||
userIds: all | ||
fpd_supported: true | ||
prebid_member: false | ||
ortb_blocking_supported: true | ||
multiformat_supported: will-bid-on-one | ||
floors_supported: true | ||
aliasCode: adkernel | ||
sidebarType: 1 | ||
--- | ||
|
||
### Note | ||
|
||
The UrekaMedia bidding adapter requires setup and approval before implementation. Please reach out to <[email protected]> for more details. | ||
|
||
### Bid Params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|----------|----------|-----------------------|---------------------------|----------| | ||
| `host` | required | Host | `'cpm.upremium.asia'` | `string` | | ||
| `zoneId` | required | Zone Id | `30164` | `integer` | |
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 |
---|---|---|
|
@@ -12,7 +12,6 @@ sidebarType : 1 | |
--- | ||
|
||
# 1plusX RTD Module | ||
|
||
{:.no_toc} | ||
|
||
* TOC | ||
|
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 |
---|---|---|
|
@@ -12,7 +12,6 @@ sidebarType : 1 | |
--- | ||
|
||
# AAX Blockmeter Realtime Data Module | ||
|
||
{:.no_toc} | ||
|
||
* TOC | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,6 @@ sidebarType : 1 | |
--- | ||
|
||
# Adpod Module | ||
|
||
{:.no_toc} | ||
|
||
* TOC | ||
|
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 |
---|---|---|
|
@@ -12,7 +12,6 @@ sidebarType : 1 | |
--- | ||
|
||
# ArcSpan RTD Module | ||
|
||
{:.no_toc} | ||
|
||
* TOC | ||
|
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,7 +11,6 @@ sidebarType : 1 | |
--- | ||
|
||
# Bid Viewability - GAM | ||
|
||
{:.no_toc} | ||
|
||
- TOC | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,6 @@ sidebarType : 1 | |
--- | ||
|
||
# Bid Viewability - Ad Server Independent | ||
|
||
{:.no_toc} | ||
|
||
- TOC | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,6 @@ sidebarType : 1 | |
--- | ||
|
||
# BlueConic Real-time Data Submodule | ||
|
||
{:.no_toc} | ||
|
||
* TOC | ||
|
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 |
---|---|---|
|
@@ -12,7 +12,6 @@ sidebarType : 1 | |
--- | ||
|
||
# brandmetrics Real Time Data Provider Module | ||
|
||
{:.no_toc} | ||
|
||
* TOC | ||
|
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 |
---|---|---|
|
@@ -12,7 +12,6 @@ sidebarType : 1 | |
--- | ||
|
||
# Browsi Viewability Module | ||
|
||
{:.no_toc} | ||
|
||
* TOC | ||
|
Oops, something went wrong.