-
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.
tappx Bid Adapter: add video instream support and update testing (#6580)
* tappxBidAdapter : update tests adding video * tappxBidAdapter : add video instream * tappxBidAdapter : update tappx md doc * tappxBidAdapter: Fix Newline required eol-last * tappxBidAdapter: update tests User sync and video reqs * tappxBidAdapter: Extra space after fix Co-authored-by: marc_tappx <[email protected]>
- Loading branch information
1 parent
0bdd194
commit c7e6e89
Showing
3 changed files
with
195 additions
and
21 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 |
---|---|---|
|
@@ -7,6 +7,7 @@ Maintainer: [email protected] | |
|
||
# Description | ||
Module that connects to :tappx demand sources. | ||
Suppots Banner and Instream Video. | ||
Please use ```tappx``` as the bidder code. | ||
Ads sizes available: [320,50], [300,250], [320,480], [1024,768], [728,90] | ||
|
||
|
@@ -35,3 +36,35 @@ Ads sizes available: [320,50], [300,250], [320,480], [1024,768], [728,90] | |
} | ||
]; | ||
``` | ||
|
||
|
||
# Video Test Parameters | ||
``` | ||
var adUnits = [ | ||
{ | ||
code: 'video-ad-div', | ||
renderer: { | ||
options: { | ||
text: "Tappx instream Video" | ||
} | ||
}, | ||
mediaTypes: { | ||
video: { | ||
context: "instream", | ||
mimes : [ "video/mp4", "application/javascript" ], | ||
playerSize: [320, 250] | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'tappx', | ||
params: { | ||
host: "testing.ssp.tappx.com/rtb/v2/", | ||
tappxkey: "pub-1234-desktop-1234", | ||
endpoint: "VZ12TESTCTV", | ||
bidfloor: 0.005, | ||
test: true | ||
} | ||
}] | ||
} | ||
]; | ||
``` |
Oops, something went wrong.