-
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.
Incrx Bid Adapter : add incrementX banner and vast (#12115)
* IncrementX VAST Adapter * Add incrxBidAdapter.md file for banner & video * Resolved issue:Bidder incrementx is missing required params
- Loading branch information
1 parent
87e198f
commit 8932942
Showing
3 changed files
with
234 additions
and
86 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
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,45 @@ | ||
# Overview | ||
|
||
``` | ||
Module Name: IncrementX Bid Adapter | ||
Module Type: Bidder Adapter | ||
Maintainer: [email protected] | ||
``` | ||
|
||
# Description | ||
|
||
IncrementX Bid Adapter supports banner and video at present. | ||
|
||
# Test Parameters | ||
``` | ||
var adUnits = [ | ||
{ | ||
code: "banner-space", | ||
mediaTypes: { | ||
banner: { | ||
sizes: [[300, 250]] | ||
} | ||
}, | ||
bids: [{ | ||
bidder: "incrementx", | ||
params: { | ||
placementId: "your_placementId" // required, | ||
} | ||
}] | ||
}, { | ||
code: 'video-outstream-space', | ||
mediaTypes: { | ||
video: { | ||
context: "outstream", | ||
playerSize: [640,480] | ||
} | ||
}, | ||
bids: [{ | ||
bidder: "incrementx", | ||
params: { | ||
placementId: "your_placement_id" // required, | ||
} | ||
}] | ||
}]; | ||
``` |
Oops, something went wrong.