forked from prebid/prebid.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
765c334
commit cb15f2c
Showing
1 changed file
with
91 additions
and
0 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,91 @@ | ||
--- | ||
layout: bidder | ||
title: AdTarget Medya | ||
description: Prebid AdTarget Medya Bidder Adapter. | ||
pbjs: true | ||
pbs: true | ||
biddercode: adt | ||
media_types: banner,video,native | ||
gvl_id: 779 | ||
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 | ||
|
||
AdTarget Medya header bidding adapter connects with AdTarget Medya demand sources to fetch bids for network ID. Please reach out to your account manager or <kamil@adtarget.com.tr> for more information. | ||
|
||
### Bid params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|-------------|----------|-------------------------------------|----------|----------| | ||
| `networkId` | required | The network ID from AdTarget Medya | `12345` | `number` | | ||
| `host` | required | RTB Host | `adt.rtb.adtarget.org` | `string` | | ||
|
||
### Test Parameters | ||
|
||
300x250 banner test | ||
|
||
```javascript | ||
var adUnits = [{ | ||
code: 'your-slot_1-div', | ||
mediaTypes: { | ||
banner: { sizes: [[300, 250]] }, | ||
}, | ||
bids: [{ | ||
bidder: 'adt', | ||
params: { | ||
networkId: 12345, | ||
host: 'adt.rtb.adtarget.org' | ||
} | ||
}] | ||
},{ | ||
code: 'your-slot_2-div', | ||
mediaTypes: { | ||
native: { ... }, | ||
}, | ||
bids: [{ | ||
bidder: 'adt', | ||
params: { | ||
networkId: 12345, | ||
host: 'adt.rtb.adtarget.org' | ||
} | ||
}] | ||
},{ | ||
code: 'your-slot_3-div', | ||
mediaTypes: { | ||
video: { ... }, | ||
}, | ||
bids: [{ | ||
bidder: 'adt', | ||
params: { | ||
networkId: 12345, | ||
host: 'adt.rtb.adtarget.org' | ||
} | ||
}] | ||
}]; | ||
``` | ||
|
||
## UserSync example | ||
|
||
```javascript | ||
pbjs.setConfig({ | ||
userSync: { | ||
iframeEnabled: true, | ||
syncEnabled: true, | ||
syncDelay: 1, | ||
aliasSyncEnabled: true | ||
} | ||
}); | ||
``` |