forked from prebid/Prebid.js
-
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.
Merge pull request prebid#11 from PubMatic-OpenWrap/S2S-code-review-c…
…hanges S2 s code review changes
- Loading branch information
Showing
5 changed files
with
135 additions
and
72 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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
[ | ||
"appnexusBidAdapter", | ||
"appnexusBidAdapter", | ||
"sekindoUMBidAdapter", | ||
"pulsepointBidAdapter", | ||
"audienceNetworkBidAdapter", | ||
"openxBidAdapter", | ||
"pulsepointBidAdapter", | ||
"audienceNetworkBidAdapter", | ||
"openxBidAdapter", | ||
"rubiconBidAdapter", | ||
"sovrnBidAdapter", | ||
"pubmaticBidAdapter" | ||
] | ||
"pubmaticBidAdapter", | ||
"pubmaticServerBidAdapter" | ||
] |
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,47 @@ | ||
# Overview | ||
|
||
``` | ||
Module Name: PubMatic-Server Bid Adapter | ||
Module Type: Bidder Adapter | ||
Maintainer: UOEDev@pubmatic.com | ||
``` | ||
|
||
# Description | ||
|
||
Connects to PubMatic exchange for bids. | ||
|
||
PubMaticServer bid adapter supports Banner currently. | ||
|
||
# Sample Ad Unit: For Publishers | ||
``` | ||
var pbjs = pbjs || {}; | ||
pbjs.que.push(function() { | ||
var adUnits = [{ | ||
code: 'test-div', | ||
sizes: [ | ||
[300, 250], | ||
[728, 90] | ||
], | ||
bids: [{ | ||
bidder: 'pubmaticServer', | ||
params: { | ||
publisherId: '301', // required | ||
adSlot: '/15671365/DMDemo@728x90', // required | ||
profileid: '', // required | ||
divId: '', // required | ||
versionid: '', // optional (Default 0) | ||
// openRTB params | ||
lat: '40.712775', // optional | ||
lon: '-74.005973', // optional | ||
yob: '1982', // optional | ||
gender: 'M' // optional | ||
} | ||
}] | ||
}]; | ||
}); | ||
``` |
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