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

Bidfloor examples #6546

Merged
merged 28 commits into from
Apr 8, 2021
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
12ddf51
updated object,str,num validations using pbjs utils
Dec 9, 2020
1e01733
validation if statements for content object
Dec 9, 2020
9dc4acf
validation if statements for content object
Dec 9, 2020
46fa4b3
updated contetn object validations using utils
Dec 9, 2020
8a3f396
refractoring clean if statement
Dec 9, 2020
f3dd28c
fixing typos
Dec 9, 2020
8ec2a8e
Merge branch 'master' into SAPR-15477
Dec 9, 2020
fed03fe
added todos
Dec 9, 2020
5233cce
added category string & data object validations
Dec 10, 2020
3edfd61
fixed esling ENDPOINT issue
Dec 10, 2020
0713594
updated content obj unit tests
Dec 10, 2020
5560a17
fixed cat & data validation
Dec 10, 2020
35d4c9e
Merge branch 'master' into SAPR-15477
Dec 10, 2020
04797dd
fixed producer as object
Dec 10, 2020
4d19186
revert .includes() to .indexof() for IE
Dec 10, 2020
80e95ea
reduced content obj params accoriding to ad-server support
Dec 10, 2020
664e68d
fixed typeOf typo
Dec 10, 2020
1a5047f
fixed episode to Number
Dec 10, 2020
1fb8829
Merge branch 'master' into SAPR-15477
Dec 14, 2020
f90ef3a
gitignore
Dec 14, 2020
d2be3f0
restore gitignore
Dec 14, 2020
1135493
removed unsupported params from md file
Dec 14, 2020
e428293
reverted package & pagkage-lock
Dec 14, 2020
89b7985
fixed incorrect episdoe from str to num
Dec 14, 2020
631c2f6
Merge branch 'master' of https://github.com/prebid/Prebid.js
Dec 15, 2020
8c547ad
Merge remote-tracking branch 'upstream/master'
Dec 21, 2020
b0d44ff
Merge remote-tracking branch 'upstream/master'
Mar 3, 2021
982e748
oneVideo Bid Adapter bidfloor examples
adam-browning Apr 8, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions modules/oneVideoBidAdapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Connects to Verizon Media's Video SSP (AKA ONE Video / Adap.tv) demand source to
key2: 123345
}
},
bidfloor: 0.5,
site: {
id: 1,
page: 'https://verizonmedia.com',
Expand Down Expand Up @@ -92,6 +93,7 @@ Connects to Verizon Media's Video SSP (AKA ONE Video / Adap.tv) demand source to
maxduration: 30,
ttl: 250
},
bidfloor: 0.5,
site: {
id: 1,
page: 'https://verizonmedia.com',
Expand Down Expand Up @@ -128,6 +130,7 @@ Connects to Verizon Media's Video SSP (AKA ONE Video / Adap.tv) demand source to
position: 1,
display: 1
},
bidfloor: 0.5,
site: {
id: 1,
page: 'https://verizonmedia.com',
Expand Down Expand Up @@ -161,6 +164,7 @@ Connects to Verizon Media's Video SSP (AKA ONE Video / Adap.tv) demand source to
mimes: ['video/mp4', 'application/javascript'],
display: 1
},
bidfloor: 0.5,
site: {
id: 1,
page: 'https://verizonmedia.com',
Expand Down Expand Up @@ -197,7 +201,7 @@ var adUnits = [
playerHeight: 250,
mimes: ['video/mp4', 'application/javascript'],
e2etest: true
}
},
pubId: 'YOUR_PUBLISHER_ID'
}
}
Expand Down Expand Up @@ -237,6 +241,7 @@ var adUnits = [
api: [2],
sid:
},
bidfloor: 0.5,
site: {
id: 1,
page: 'https://verizonmedia.com',
Expand Down Expand Up @@ -288,11 +293,12 @@ var adUnits = [
protocols: [2,5],
api: [2],
},
bidfloor: 0.5,
site: {
id: 1,
page: 'https://verizonmedia.com',
referrer: 'https://verizonmedia.com'
},
},
pubId: 'HBExchange'
}
}
Expand Down Expand Up @@ -348,6 +354,7 @@ const adUnits = [{
}
}
},
bidfloor: 0.5,
pubId: 'HBExchange'
}
}
Expand Down Expand Up @@ -380,6 +387,7 @@ const adUnits = [{
api: [1, 2],
ttl: 300
},
bidfloor: 0.5,
pubId: 'HBExchange'
}
}]
Expand Down