-
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.
Synacormedia: Added video support to adapter. (#3695)
* Synacormedia: Added video support to adapter. Added playerSize to video test page. * Synacormedia: Updated test case for IE/Edge * Synacormedia: Updates based on PR review
- Loading branch information
Showing
4 changed files
with
299 additions
and
57 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 |
---|---|---|
|
@@ -11,6 +11,13 @@ Maintainer: [email protected] | |
The Synacor Media adapter requires setup and approval from Synacor. | ||
Please reach out to your account manager for more information. | ||
|
||
### DFP Video Creative | ||
To use video, setup a `VAST redirect` creative within Google AdManager (DFP) with the following VAST tag URL: | ||
|
||
``` | ||
https://track.technoratimedia.com/openrtb/tags?ID=%%PATTERN:hb_cache_id_synacorm%%&AUCTION_PRICE=%%PATTERN:hb_pb_synacormedia%% | ||
``` | ||
|
||
# Test Parameters | ||
|
||
## Web | ||
|
@@ -24,23 +31,32 @@ Please reach out to your account manager for more information. | |
bidder: "synacormedia", | ||
params: { | ||
seatId: "prebid", | ||
placementId: "81416", | ||
bidfloor: "0.10", | ||
placementId: "demo1", | ||
bidfloor: 0.10, | ||
pos: 1 | ||
} | ||
}] | ||
},{ | ||
code: 'test-div2', | ||
sizes: [ | ||
[300, 250] | ||
], | ||
mediaType: { | ||
video: { | ||
context: 'instream', | ||
playerSizes: [ | ||
[300, 250] | ||
], | ||
} | ||
}, | ||
bids: [{ | ||
bidder: "synacormedia", | ||
params: { | ||
seatId: "prebid", | ||
placementId: "demo2" | ||
bidfloor: "0.10", | ||
pos: 1 | ||
placementId: "demo1" | ||
bidfloor: 0.20, | ||
pos: 1, | ||
video: { | ||
minduration: 15, | ||
maxduration: 30 | ||
} | ||
} | ||
}] | ||
}]; | ||
|
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
Oops, something went wrong.