-
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.
* Serverbid: fix ad refreshes * Serverbid 1.0 Adapter * Add adsparc alias, maintainer email. * serverbidBidAdapter: updated docs with working examples * Updates per PR feedback.
- Loading branch information
1 parent
f93c2dd
commit 1614a66
Showing
3 changed files
with
378 additions
and
329 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,44 @@ | ||
# Overview | ||
|
||
Module Name: Serverbid Bid Adapter | ||
|
||
Module Type: Bid Adapter | ||
|
||
Maintainer: jgrimes@serverbid.com, jswart@serverbid.com | ||
|
||
# Description | ||
|
||
Connects to Serverbid for receiving bids from configured demand sources. | ||
|
||
# Test Parameters | ||
```javascript | ||
var adUnits = [ | ||
{ | ||
code: 'test-ad-1', | ||
sizes: [[300, 250]], | ||
bids: [ | ||
{ | ||
bidder: 'serverbid', | ||
params: { | ||
networkId: '9969', | ||
siteId: '980639' | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
code: 'test-ad-2', | ||
sizes: [[300, 250]], | ||
bids: [ | ||
{ | ||
bidder: 'serverbid', | ||
params: { | ||
networkId: '9969', | ||
siteId: '980639', | ||
zoneId: '178503' | ||
} | ||
} | ||
] | ||
} | ||
]; | ||
``` |
Oops, something went wrong.