-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
update quantcastBidAdapter to pass quantcast fpa in the bid request #5947
Conversation
modules/lunamediahbBidAdapter.js
Outdated
@@ -70,7 +70,6 @@ export const spec = { | |||
schain: bid.schain || {}, | |||
}; | |||
const mediaType = bid.mediaTypes | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Build was complaining about this line, so I removed it:
"/home/circleci/Prebid.js/modules/lunamediahbBidAdapter.js
73:1 error Trailing spaces not allowed no-trailing-spaces"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good
@robertrmartinez Thanks for the review. When can we merge this PR? |
modules/quantcastBidAdapter.js
Outdated
@@ -18,6 +19,9 @@ export const QUANTCAST_TEST_PUBLISHER = 'test-publisher'; | |||
export const QUANTCAST_TTL = 4; | |||
export const QUANTCAST_PROTOCOL = 'https'; | |||
export const QUANTCAST_PORT = '8443'; | |||
export const QUANTCAST_FPA = '__qca'; | |||
|
|||
export const storage = getStorageManager(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does Quantcast have a registered GVL id?
Passing the following will allow storage access when GDPR Enforcement is enabled.
https://github.com/prebid/Prebid.js/blob/master/modules/appnexusBidAdapter.js#L61
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We do. I updated the code accordingly. Thanks for the catch.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool 👍
Type of change
Description of change
This PR updates Quantcast bidding adapter to read the Quantcast first party cookie and include it in the bid request. Please contact asig@quantcast.com for any issues.