-
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.
Gumgum Bid Adapter: prebid changes to support jp products (#8552)
* Gumgum - ADTS-175 Support multiple GG params * ADJS-1165-prebid-adaptor-changes-to-support-jp-products * made tweaks to the skin product for the gumgumBidAdapter * added test for new product id Co-authored-by: Lisa Benmore <[email protected]> Co-authored-by: John Bauzon <[email protected]>
- Loading branch information
1 parent
9770ddb
commit c3e0639
Showing
3 changed files
with
26 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ Maintainer: [email protected] | |
|
||
GumGum adapter for Prebid.js | ||
Please note that both video and in-video products require a mediaType of video. | ||
In-screen and slot products should have a mediaType of banner. | ||
In-screen, slot, and skin products should have a mediaType of banner. | ||
|
||
# Test Parameters | ||
``` | ||
|
@@ -50,6 +50,24 @@ var adUnits = [ | |
} | ||
} | ||
] | ||
},{ | ||
code: 'skin-placement', | ||
sizes: [[300, 50]], | ||
mediaTypes: { | ||
banner: { | ||
sizes: [[1, 1]], | ||
} | ||
}, | ||
bids: [ | ||
{ | ||
bidder: 'gumgum', | ||
params: { | ||
zone: 'dc9d6be1', // GumGum Zone ID given to the client | ||
product: 'skin', | ||
bidfloor: 0.03 // CPM bid floor | ||
} | ||
} | ||
] | ||
},{ | ||
code: 'video-placement', | ||
sizes: [[300, 50]], | ||
|
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