Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for gpid #13

Merged
merged 2 commits into from
Feb 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions modules/riseBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,10 +294,15 @@ function generateBidParameters(bid, bidderRequest) {
bidObject.pos = pos;
}

const gpid = deepAccess(bid, `ortb2Imp.ext.gpid`);
if (gpid) {
bidObject.gpid = gpid;
}

if (mediaType === VIDEO) {
let playbackMethodValue = undefined;
const playbackMethod = deepAccess(bid, `mediaTypes.video.playbackmethod`);
let playbackMethodValue = null;


// verify playbackMethod is of type integer array, or integer only.
if (Array.isArray(playbackMethod) && isInteger(playbackMethod[0])) {
// only the first playbackMethod in the array will be used, according to OpenRTB 2.5 recommendation
Expand Down