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

Adman Bid Adapter : additional content object handle #10204

Merged
merged 54 commits into from
Jul 11, 2023
Merged
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
ab73f52
Add Adman bid adapter
mkatogi Mar 13, 2019
87ac067
Add supportedMediaTypes property
minokem Mar 15, 2019
645328a
Update ADman Media bidder adapter
mkatogi Mar 19, 2019
3ea8a3c
Remove console.log
mkatogi Mar 20, 2019
56862e2
Fix typo
mkatogi Jul 11, 2019
d205432
Fix typo
mkatogi Jul 11, 2019
6477f33
revert package-json.lock
mkatogi Jul 15, 2019
a54c9ef
Delete package-lock.json
admanmedia Jul 15, 2019
3d938d0
Merge branch 'master' of https://github.com/prebid/Prebid.js
mkatogi Jul 15, 2019
4c9e9f5
Merge branch 'master' of https://github.com/admanmedia/Prebid.js
mkatogi Jul 15, 2019
0a16544
back to original package-lock.json
mkatogi Jul 15, 2019
ceb621c
initial
Feb 7, 2020
19758f7
catch pbjs error
Feb 7, 2020
4129519
catch pbjs error
Feb 7, 2020
52ec1a8
catch pbjs error
Feb 7, 2020
4ad67bb
log
Feb 7, 2020
dee5192
remove eu url
Feb 10, 2020
4c6b816
remove eu url
Feb 10, 2020
ddea6d1
remove eu url
Feb 10, 2020
86b5e0c
remove eu url
Feb 10, 2020
2415c63
remove eu url
Feb 10, 2020
267aa1a
Update admanBidAdapter.js
SmartyAdman Nov 16, 2020
ccb7f56
Merge branch 'master' into master
SmartyAdman Nov 16, 2020
d8ad537
Update admanBidAdapter.js
SmartyAdman Nov 16, 2020
f4413b8
Update admanBidAdapter.js
SmartyAdman Nov 16, 2020
385306b
Update admanBidAdapter.js
SmartyAdman Nov 16, 2020
695fc87
Update admanBidAdapter.js
SmartyAdman Nov 16, 2020
f0a11bf
fix conflicts
SmartyAdman Sep 6, 2021
b44c1f5
сompatible with prebid v5
SmartyAdman Sep 6, 2021
5c39725
fix conflicts
SmartyAdman Nov 25, 2021
25d3ffa
add Lotame Panorama ID
SmartyAdman Nov 26, 2021
73b802b
update getUserSyncs
SmartyAdman Dec 22, 2021
a775038
fix
SmartyAdman Dec 22, 2021
9555579
Merge remote-tracking branch 'prebid/master'
SmartyAdman Dec 22, 2021
de8bbb6
fix tests
SmartyAdman Dec 22, 2021
dc0007c
remove package-lock.json
SmartyAdman Dec 22, 2021
db3b5f5
Merge remote-tracking branch 'prebid/master'
SmartyAdman Apr 4, 2022
5c531ff
update sync url
SmartyAdman Apr 4, 2022
898b4a5
update test
SmartyAdman Apr 4, 2022
ec27251
Merge remote-tracking branch 'prebid/master'
SmartyAdman May 4, 2022
235d0cc
add idx (UserID Module)
SmartyAdman May 4, 2022
181561b
update tests
SmartyAdman May 5, 2022
071ffcf
Merge remote-tracking branch 'prebid/master'
SmartyAdman May 18, 2023
6ef72af
remove traffic param
SmartyAdman May 18, 2023
6fd8c5c
Merge branch 'prebid:master' into master
SmartyAdman Jun 8, 2023
c49ed5f
handle transactionID param
Jun 8, 2023
1ef7511
send transactionID param in imp.ext
Jun 12, 2023
2a9bd05
rename transactionID to transactionId
Jun 15, 2023
d07c83d
update tests
Jun 20, 2023
ae185ce
additional content handle
SmartyAdman Jul 10, 2023
f9ffd7a
rollback content
SmartyAdman Jul 10, 2023
ebc1d68
content handle via hb integration
SmartyAdman Jul 10, 2023
bef704f
Merge pull request #1 from admanmedia/content_handle
SmartyAdman Jul 10, 2023
ee6f146
Merge remote-tracking branch 'prebid/master'
SmartyAdman Jul 10, 2023
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
4 changes: 4 additions & 0 deletions modules/admanBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ export const spec = {
buildRequests: (validBidRequests = [], bidderRequest) => {
// convert Native ORTB definition to old-style prebid native definition
validBidRequests = convertOrtbRequestToProprietaryNative(validBidRequests);
const content = deepAccess(bidderRequest, 'ortb2.site.content', config.getAnyConfig('ortb2.site.content'));

let winTop = window;
let location;
Expand Down Expand Up @@ -95,6 +96,9 @@ export const spec = {
if (bidderRequest.gdprConsent) {
request.gdpr = bidderRequest.gdprConsent
}
if (content) {
request.content = content;
}
}
const len = validBidRequests.length;

Expand Down