-
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
FreeWheel SSP Adapter: add gvlid in spec #10654
Conversation
modules/freewheel-sspBidAdapter.js
Outdated
@@ -382,6 +384,15 @@ export const spec = { | |||
requestParams.gpp_sid = bidderRequest.ortb2.regs.gpp_sid; | |||
} | |||
|
|||
// Add content object | |||
if (typeof config.getConfig('content') === 'object') { |
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.
Please prefer the openrtb specification; this is incorrect. You should be able to find these fields on bidderRequest.ortb2.site.content. Also site.content.id is the wrong place for the Iris id. It should be as specified at https://github.com/InteractiveAdvertisingBureau/openrtb/blob/master/extensions/community_extensions/extended-content-ids.md
content: { | ||
'title': 'freewheel', | ||
'series': 'abc', | ||
'id': 'iris_5e7' |
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.
wrong place, as discussed above
Code updated. Please double check. |
Type of change
Description of change
FreeWheel SSP Adapter: add gvlid in spec