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

Vidazoo Bid Adapter: pass referrer to server + pubProvidedId support #8797

Merged
merged 23 commits into from
Aug 9, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
d1cf0a6
feat(module): multi size request
uditalias Mar 19, 2020
1f9521d
fix getUserSyncs
shmoop207 Mar 24, 2020
8c23b90
update(module): package-lock.json from master
uditalias Mar 24, 2020
84df14e
Merge branch 'master' of github.com:prebid/Prebid.js
uditalias Apr 12, 2020
bdeebe4
Merge branch 'master' of github.com:prebid/Prebid.js
uditalias Jun 8, 2020
8b343ce
Merge branch 'master' of github.com:prebid/Prebid.js
uditalias Jun 17, 2020
3964277
Merge branch 'master' of github.com:prebid/Prebid.js
uditalias Jul 1, 2020
5c82e8d
Merge branch 'master' of github.com:prebid/Prebid.js
uditalias Jul 13, 2020
f4e3391
Merge branch 'master' of github.com:prebid/Prebid.js
uditalias Jul 22, 2020
100c693
Merge branch 'master' of github.com:prebid/Prebid.js
uditalias Jul 28, 2020
8b28ac2
Merge branch 'master' of github.com:prebid/Prebid.js
uditalias Aug 23, 2020
6edd125
Merge branch 'master' of github.com:prebid/Prebid.js
uditalias Sep 6, 2020
a2cbb4a
Merge remote-tracking branch 'upstream/master'
uditalias Nov 15, 2020
cd77e4a
Merge branch 'master' of github.com:prebid/Prebid.js
uditalias Jun 20, 2021
4749df1
Merge branch 'master' of github.com:prebid/Prebid.js
uditalias Jun 22, 2021
65d6567
Merge branch 'master' of github.com:prebid/Prebid.js
uditalias Feb 9, 2022
f88609d
Merge branch 'master' of github.com:prebid/Prebid.js
uditalias Feb 10, 2022
1824b31
Merge remote-tracking branch 'upstream/master'
uditalias May 10, 2022
a8bfc95
Merge branch 'prebid:master' into master
uditalias Jul 20, 2022
a96fcc2
feat(module): VidazooBidAdapter - send top query params to server
uditalias Jul 20, 2022
1619bdd
Merge branch 'prebid:master' into master
saar120 Aug 7, 2022
9601d72
feat(module): pass referrer to server.
saar120 Aug 7, 2022
c7cf105
feat(module): added pubProvidedId to supported ID systems.
saar120 Aug 8, 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
Prev Previous commit
Next Next commit
feat(module): pass referrer to server.
  • Loading branch information
saar120 committed Aug 7, 2022
commit 9601d723671e8b7da511aefdb562844855d0e461
1 change: 1 addition & 0 deletions modules/vidazooBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ function buildRequest(bid, topWindowUrl, sizes, bidderRequest) {
cb: Date.now(),
bidFloor: bidFloor,
bidId: bidId,
referrer: bidderRequest.refererInfo.ref,
adUnitCode: adUnitCode,
publisherId: pId,
sessionId: sId,
Expand Down
4 changes: 3 additions & 1 deletion test/spec/modules/vidazooBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ const BIDDER_REQUEST = {
},
'uspConsent': 'consent_string',
'refererInfo': {
'page': 'https://www.greatsite.com'
'page': 'https://www.greatsite.com',
'ref': 'https://www.somereferrer.com'
}
};

Expand Down Expand Up @@ -168,6 +169,7 @@ describe('VidazooBidAdapter', function () {
usPrivacy: 'consent_string',
sizes: ['300x250', '300x600'],
url: 'https%3A%2F%2Fwww.greatsite.com',
referrer: 'https://www.somereferrer.com',
cb: 1000,
bidFloor: 0.1,
bidId: '2d52001cabd527',
Expand Down