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

Weborama Rtd Provider: access user profiles in local storage and add support to wam2gam and smartadserver #7728

Merged
merged 54 commits into from
Nov 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
bb4ec49
update .submodules.json to include weborama rtd
peczenyj Sep 23, 2021
5221216
Merge branch 'prebid:master' into master
peczenyj Oct 8, 2021
fb19ff0
Merge branch 'master' of https://github.com/prebid/Prebid.js
peczenyj Oct 12, 2021
ab2244c
Merge branch 'master' of https://github.com/prebid/Prebid.js
peczenyj Oct 12, 2021
73f61ed
fix jsdoc
peczenyj Oct 12, 2021
9769600
add support to wam2gam
peczenyj Oct 12, 2021
fa52e34
fix unit test
peczenyj Oct 12, 2021
3d9e8d6
fix bad copy paste
peczenyj Oct 12, 2021
5cdd65c
save dev
peczenyj Oct 13, 2021
f558680
add feature
peczenyj Oct 20, 2021
cfd58f4
rename properties
peczenyj Oct 20, 2021
b6d2b98
update unit tests
peczenyj Oct 20, 2021
5c0fdcd
fix doc
peczenyj Oct 21, 2021
65d9874
fix doc ~
peczenyj Oct 21, 2021
9818547
fix doc 3
peczenyj Oct 21, 2021
c02e29d
rename bigsea contextual
peczenyj Oct 21, 2021
fc4bdd1
rename wam2gam
peczenyj Oct 21, 2021
64b170b
refactor code
peczenyj Oct 21, 2021
b322165
rename setGAMTargeting
peczenyj Oct 21, 2021
4ba8d88
improve doc, example
peczenyj Oct 21, 2021
a597542
update conf
peczenyj Oct 22, 2021
042d5ed
Merge branch 'prebid:master' into master
peczenyj Nov 17, 2021
29c1efb
fix doc
peczenyj Nov 17, 2021
90bbdeb
fix identation
peczenyj Nov 17, 2021
4a5d486
fix identation 2
peczenyj Nov 17, 2021
f9d32e7
remove empty line into end
peczenyj Nov 17, 2021
575344f
remove empty line 2
peczenyj Nov 17, 2021
4403c01
Merge branch 'prebid:master' into add-support-to-wam2gam-and-smartads…
peczenyj Nov 17, 2021
2b3dcd5
fix jsdoc
peczenyj Oct 12, 2021
183b82c
add support to wam2gam
peczenyj Oct 12, 2021
363b939
fix unit test
peczenyj Oct 12, 2021
5a028dd
fix bad copy paste
peczenyj Oct 12, 2021
cd0cedd
save dev
peczenyj Oct 13, 2021
45480df
add feature
peczenyj Oct 20, 2021
1d177d5
rename properties
peczenyj Oct 20, 2021
d3eb6b5
update unit tests
peczenyj Oct 20, 2021
55f9d0b
fix doc
peczenyj Oct 21, 2021
78a097a
fix doc ~
peczenyj Oct 21, 2021
abe262a
fix doc 3
peczenyj Oct 21, 2021
6f8af10
rename bigsea contextual
peczenyj Oct 21, 2021
6c9b865
rename wam2gam
peczenyj Oct 21, 2021
a41861d
refactor code
peczenyj Oct 21, 2021
9c3c8b0
rename setGAMTargeting
peczenyj Oct 21, 2021
756307f
improve doc, example
peczenyj Oct 21, 2021
d267f5b
update conf
peczenyj Oct 22, 2021
b7ba7ae
fix doc
peczenyj Nov 17, 2021
fadebf7
fix identation
peczenyj Nov 17, 2021
0dcbc20
fix identation 2
peczenyj Nov 17, 2021
af44b91
remove empty line into end
peczenyj Nov 17, 2021
bdbc48a
remove empty line 2
peczenyj Nov 17, 2021
fcb792d
add intersection RtdProvider and spec (#7710)
AdmixerTech Nov 17, 2021
db7387d
Merge branch 'add-support-to-wam2gam-and-smartadserver' of github.com…
peczenyj Nov 17, 2021
e08958c
Merge branch 'prebid:master' into master
peczenyj Nov 17, 2021
815f95d
Merge branch 'master' into add-support-to-wam2gam-and-smartadserver
peczenyj Nov 17, 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
37 changes: 23 additions & 14 deletions integrationExamples/gpt/weboramaRtdProvider_example.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,31 @@
debug: true,
realTimeData: {
auctionDelay: 1000,
dataProviders: [
{
dataProviders: [{
name: "weborama",
waitForIt: true,
params: {
weboCtxConf: {
setTargeting: true,
token: "to-be-defined",
targetURL: "https://prebid.org/",
defaultProfile: {
webo_ctx: ['moon']
}
}
}
}
]
weboCtxConf: {
token: "to-be-defined", // mandatory
targetURL: "https://prebid.org", // default is document.URL
setPrebidTargeting: true, // default
sendToBidders: true, // default
defaultProfile: { // optional
webo_ctx: ['moon'],
webo_ds: ['bar']
}
},
weboUserDataConf: {
setPrebidTargeting: true, // default
sendToBidders: true, // default
defaultProfile: { // optional
webo_cs: ['Red'],
webo_audiences: ['bam']
},
localStorageProfileKey: 'webo_wam2gam_entry' // default
}
}
}]
}
});
});
Expand All @@ -54,7 +63,7 @@
}
},
bids: [{
bidder: 'appnexus',
bidder: 'smartadserver',
params: {
placementId: 1
}
Expand Down
Loading