-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added description file for AOL Adapter.
- Loading branch information
1 parent
1023e16
commit 7cc2754
Showing
1 changed file
with
47 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,47 @@ | ||
# Overview | ||
|
||
Module Name: AOL Bid Adapter | ||
|
||
Module Type: AOL Adapter | ||
|
||
Maintainer: hb-fe-tech@oath.com | ||
|
||
# Description | ||
|
||
Module that connects to AOL's demand sources | ||
|
||
# Test Parameters | ||
```javascript | ||
var adUnits = [ | ||
{ | ||
code: 'test-ad', | ||
sizes: [[300, 250]], | ||
bids: [ | ||
{ | ||
bidder: 'onedisplay', | ||
params: { | ||
placement: '23324932', | ||
network: '5071.1', | ||
bidFloor: '0.80', | ||
keyValues: { | ||
test: 'key' | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
code: 'test-mobile-ad', | ||
sizes: [[300, 250]], | ||
bids: [ | ||
{ | ||
bidder: 'onemobile', | ||
params: { | ||
dcn: '2c9d2b50015a5aa95b70a9b0b5b10012', | ||
pos: 'header' | ||
} | ||
} | ||
] | ||
} | ||
]; | ||
``` |