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.
Revcontent Bid Adapter: adjusted for Price Floors Module (prebid#7093)
* Original adapter * REVC-3691 | Prebid.js support for price floors module (#1) * REVC-3691 | Prebid.js support for price floors module | Call getFloor function; test-case is added * REVC-3691 | 1 - Snippet with multi-items (#2) * REVC-3691 | Prebid.js support for price floors module | Snippet for multi-item * REVC-3691 | Prebid.js support for price floors module | Muti-item + fixed test-cases (#3) * REVC-3691 | Prebid.js support for price floors module | Fixed demo pages * REVC-3691 | Prebid.js support for price floors module | Added demo with multi-items * manually kick off circleci tests Co-authored-by: Chris Huie <[email protected]>
- Loading branch information
1 parent
26aa81b
commit 568a90d
Showing
4 changed files
with
790 additions
and
7 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,116 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Prebid.js Banner Example</title> | ||
<!-- Prebid.js --> | ||
<!-- <script async src="prebid.js"></script> --> | ||
<!-- <script async src="../../build/dist/prebid.js"></script> --> | ||
<script async src="../../build/dev/prebid.js"></script> | ||
<!-- Google Publisher Tag --> | ||
<script async src="https://www.googletagservices.com/tag/js/gpt.js"></script> | ||
<script> | ||
var pbjs = pbjs || {}; | ||
pbjs.que = pbjs.que || []; | ||
const customConfigObject = { | ||
"buckets": [{ | ||
"max": 40, | ||
"increment": 0.5 | ||
}] | ||
}; | ||
// Prebid Banner Ad Unit | ||
const adUnits = [{ | ||
code: '/21623266709/prebid-test', | ||
mediaTypes: { | ||
banner: { | ||
sizes: [[300, 250]], | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'revcontent', | ||
params: { | ||
// Your user-id and api-key | ||
apiKey: 'abababababababababababababababababababab', | ||
userId: 111111, | ||
domain: 'www.denverpost.com', | ||
endpoint: 'trends.revcontent.com', | ||
bidfloor: 0.05, | ||
} | ||
}] | ||
},{ | ||
code: '/21623266709/prebid-test-2', | ||
mediaTypes: { | ||
banner: { | ||
sizes: [[300, 250]], | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'revcontent', | ||
params: { | ||
// Your user-id and api-key | ||
apiKey: 'abababababababababababababababababababab', | ||
userId: 111111, | ||
domain: 'www.denverpost.com', | ||
endpoint: 'trends.revcontent.com', | ||
bidfloor: 0.05, | ||
} | ||
}] | ||
} | ||
]; | ||
</script> | ||
<script> | ||
var googletag = googletag || {}; | ||
googletag.cmd = googletag.cmd || []; | ||
googletag.cmd.push(function () { | ||
googletag.pubads().disableInitialLoad(); | ||
}); | ||
pbjs.que.push(function () { | ||
pbjs.setConfig({ | ||
enableSendAllBids: false, | ||
priceGranularity: customConfigObject | ||
}); | ||
pbjs.addAdUnits(adUnits); | ||
pbjs.requestBids({ bidsBackHandler: sendAdServerRequest }); | ||
}); | ||
function sendAdServerRequest() { | ||
googletag.cmd.push(function () { | ||
pbjs.que.push(function () { | ||
pbjs.setTargetingForGPTAsync('/21623266709/prebid-test'); | ||
pbjs.setTargetingForGPTAsync('/21623266709/prebid-test-2'); | ||
googletag.pubads().refresh(); | ||
}); | ||
}); | ||
} | ||
</script> | ||
<script> | ||
googletag.cmd.push(function () { | ||
googletag | ||
.defineSlot('/21623266709/prebid-test', [[300, 250]], 'div-0') | ||
.addService(googletag.pubads()); | ||
googletag | ||
.defineSlot('/21623266709/prebid-test-2', [[300, 250]], 'div-1') | ||
.addService(googletag.pubads()); | ||
googletag.pubads().enableSingleRequest(); | ||
googletag.enableServices(); | ||
}); | ||
</script> | ||
</head> | ||
<body> | ||
<h2>Prebid.js Banner Example</h2> | ||
<div id='div-0'> | ||
<script> | ||
googletag.cmd.push(function () { | ||
googletag.display('div-0'); | ||
}); | ||
</script> | ||
</div> | ||
<br> | ||
<div id='div-1'> | ||
<script> | ||
googletag.cmd.push(function () { | ||
googletag.display('div-1'); | ||
}); | ||
</script> | ||
</div> | ||
<div id="targeting-keys"></div> | ||
</body> |
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.