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: update sync url #8250

Merged
merged 39 commits into from
Apr 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 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
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
2 changes: 1 addition & 1 deletion modules/admanBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {config} from '../src/config.js';

const BIDDER_CODE = 'adman';
const AD_URL = 'https://pub.admanmedia.com/?c=o&m=multi';
const URL_SYNC = 'https://pub.admanmedia.com';
const URL_SYNC = 'https://sync.admanmedia.com';

function isBidResponseValid(bid) {
if (!bid.requestId || !bid.cpm || !bid.creativeId ||
Expand Down
2 changes: 1 addition & 1 deletion test/spec/modules/admanBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ describe('AdmanAdapter', function () {
expect(userSync[0].type).to.exist;
expect(userSync[0].url).to.exist;
expect(userSync[0].type).to.be.equal('image');
expect(userSync[0].url).to.be.equal('https://pub.admanmedia.com/image?pbjs=1&coppa=0');
expect(userSync[0].url).to.be.equal('https://sync.admanmedia.com/image?pbjs=1&coppa=0');
});
});
});