Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kubient video #7057

Closed
wants to merge 14 commits into from
Prev Previous commit
fix md fileC
  • Loading branch information
Artem Aleksashkin committed Jun 18, 2021
commit 1801d420ae3f80ff80df4cccaff88845dbe232ff
67 changes: 51 additions & 16 deletions modules/kubientBidAdapter.md
Original file line number Diff line number Diff line change
@@ -6,21 +6,56 @@
# Description
Connects to Kubient KSSP demand source to fetch bids.
Connects to Kubient KSSP demand source to fetch bids. Banners and Video supported
# Test Parameters
# Banner Test Parameters
```
var adUnits = [
{
code: 'banner-ad-unit',
mediaTypes: {
banner: {
sizes: [[300, 100]]
}
},
bids: [{
bidder: 'kubient',
params: {
zoneid: "5fbb948f1e22b",
}
}]
}
];
# Video Test Parameters
var adUnits = [
{
code: 'video-ad-unit',
mediaTypes: {
video: {
playerSize: [300, 250], // required
context: 'instream', // required
mimes: ['video/mp4','video/x-flv'], // required
protocols: [ 2, 3 ], // required, set at least 1 value in array
placement: 1, // optional, defaults to 2 when context = outstream
api: [ 1, 2 ], // optional
skip: 0, // optional
minduration: 5, // optional
maxduration: 30, // optional
playbackmethod: [1,3], // optional
battr: [ 13, 14 ], // optional
linearity: 1, // optional
minbitrate: 10, // optional
maxbitrate: 10 // optional
}
},
bids: [{
bidder: 'kubient',
params: {
zoneid: "60ad1c0b35864",
}
}]
}
];
```
var adUnits = [{
code: 'banner-ad-div',
mediaTypes: {
banner: {
sizes: [[300, 250],[728, 90]],
}
},
bids: [{
"bidder": "kubient",
"params": {
"zoneid": "5fbb948f1e22b",
}
}]
}];