-
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 remote-tracking branch 'prebid/master'
- Loading branch information
Showing
73 changed files
with
1,515 additions
and
310 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<!-- markdownlint-disable MD034 --> | ||
<!-- non-production version of prebid.js--> | ||
<script type="text/plain" class="cmplazyload" data-cmp-vendor="s1442" async data-cmp-src="https//cdn.jsdelivr.net/npm/prebid.js@latest/dist/not-for-prod/prebid.js"></script> | ||
<script type="text/plain" class="cmplazyload" data-cmp-vendor="s1442" async data-cmp-src="https://cdn.jsdelivr.net/npm/prebid.js@latest/dist/not-for-prod/prebid.js"></script> |
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,91 @@ | ||
--- | ||
layout: bidder | ||
title: AdMatic GMBH | ||
description: Prebid AdMatic GMBH Bidder Adapter. | ||
pbjs: true | ||
pbs: true | ||
biddercode: admaticde | ||
media_types: banner,video,native | ||
gvl_id: 1281 (admatic) | ||
tcfeu_supported: true | ||
usp_supported: true | ||
coppa_supported: true | ||
gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp | ||
schain_supported: true | ||
dchain_supported: false | ||
userIds: criteo, id5Id, sharedId, unifiedId | ||
safeframes_ok: true | ||
floors_supported: true | ||
aliasCode: admatic | ||
multiformat_supported: will-bid-on-any | ||
sidebarType: 1 | ||
--- | ||
|
||
### Description | ||
|
||
AdMatic GMBH header bidding adapter connects with AdMatic GMBH demand sources to fetch bids for network ID. Please reach out to your account manager or <fatih.kaya@admatic.de> for more information. | ||
|
||
### Bid params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|-------------|----------|-------------------------------------|----------|----------| | ||
| `networkId` | required | The network ID from AdMatic GMBH | `12345` | `number` | | ||
| `host` | required | RTB Host | `rtb.network.admatic.de` | `string` | | ||
|
||
### Test Parameters | ||
|
||
300x250 banner test | ||
|
||
```javascript | ||
var adUnits = [{ | ||
code: 'your-slot_1-div', | ||
mediaTypes: { | ||
banner: { sizes: [[300, 250]] }, | ||
}, | ||
bids: [{ | ||
bidder: 'admaticde', | ||
params: { | ||
networkId: 12345, | ||
host: 'rtb.network.admatic.de' | ||
} | ||
}] | ||
},{ | ||
code: 'your-slot_2-div', | ||
mediaTypes: { | ||
native: { ... }, | ||
}, | ||
bids: [{ | ||
bidder: 'admaticde', | ||
params: { | ||
networkId: 12345, | ||
host: 'rtb.network.admatic.de' | ||
} | ||
}] | ||
},{ | ||
code: 'your-slot_3-div', | ||
mediaTypes: { | ||
video: { ... }, | ||
}, | ||
bids: [{ | ||
bidder: 'admaticde', | ||
params: { | ||
networkId: 12345, | ||
host: 'rtb.network.admatic.de' | ||
} | ||
}] | ||
}]; | ||
``` | ||
|
||
## UserSync example | ||
|
||
```javascript | ||
pbjs.setConfig({ | ||
userSync: { | ||
iframeEnabled: true, | ||
syncEnabled: true, | ||
syncDelay: 1, | ||
aliasSyncEnabled: true | ||
} | ||
}); | ||
``` |
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,31 @@ | ||
--- | ||
layout: bidder | ||
title: AdTonos | ||
description: Prebid AdTonos Bidder Adapter | ||
biddercode: adtonos | ||
media_types: no-banner, video, audio | ||
tcfeu_supported: true | ||
gvl_id: 682 | ||
gpp_supported: false | ||
schain_supported: true | ||
coppa_supported: true | ||
usp_supported: true | ||
deals_supported: true | ||
floors_supported: true | ||
safeframes_ok: true | ||
prebid_member: true | ||
pbjs: false | ||
pbs: true | ||
sidebarType: 1 | ||
--- | ||
|
||
### Note | ||
|
||
The AdTonos Bidding adapter requires setup before beginning. Please contact us at <support@adtonos.com> | ||
|
||
### Bid params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|---------------|----------|-----------------------|-----------------------|----------| | ||
| `supplierId` | required | Supplier account id | `'1YZxxxyDMCXWv7SwY'` | `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
Oops, something went wrong.