Skip to content

Commit

Permalink
RTBHouse Bid Adapter: add global vendor list id (#8002)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtbh-lotani authored Feb 3, 2022
1 parent fb36bbb commit fd6ac2a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/rtbhouseBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const ENDPOINT_URL = 'creativecdn.com/bidder/prebid/bids';
const DEFAULT_CURRENCY_ARR = ['USD']; // NOTE - USD is the only supported currency right now; Hardcoded for bids
const SUPPORTED_MEDIA_TYPES = [BANNER, NATIVE];
const TTL = 55;
const GVLID = 16;

// Codes defined by OpenRTB Native Ads 1.1 specification
export const OPENRTB = {
Expand Down Expand Up @@ -36,6 +37,7 @@ export const OPENRTB = {
export const spec = {
code: BIDDER_CODE,
supportedMediaTypes: SUPPORTED_MEDIA_TYPES,
gvlid: GVLID,

isBidRequestValid: function (bid) {
return !!(includes(REGIONS, bid.params.region) && bid.params.publisherId);
Expand Down

0 comments on commit fd6ac2a

Please sign in to comment.