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.
Add Video Support for Datablocks Bid Adapter (prebid#4195)
* add datablocks Analytics and Bidder Adapters * remove preload param * remove preloadid * better coverage of tests * better coverage * IE doesn't support array.find * lint test * update example host * native asset id should be integer * add datablocks Video * remove isInteger * skip if empty
- Loading branch information
Showing
3 changed files
with
119 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
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ Maintainer: [email protected] | |
# Description | ||
|
||
Connects to Datablocks Version 5 Platform | ||
Banner Native and | ||
Banner Native and Video | ||
|
||
|
||
# Test Parameters | ||
|
@@ -47,6 +47,25 @@ Banner Native and | |
sourceId: 12345, | ||
host: 'prebid.datablocks.net' | ||
} | ||
}, { | ||
code: 'video-div', | ||
mediaTypes : { | ||
video: { | ||
playerSize:[500,400], | ||
durationRangeSec:[15,30], | ||
context: "linear" | ||
} | ||
}, | ||
bids: [ | ||
{ | ||
bidder: 'datablocks', | ||
params: { | ||
sourceId: 12345, | ||
host: 'prebid.datablocks.net', | ||
video: { | ||
mimes:["video/flv"] | ||
} | ||
} | ||
} | ||
] | ||
} | ||
|
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