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
EXADS Bid Adapter: initial release #11284
Conversation
EX-16373 - PrebidJS Adapter
return envParams; | ||
} | ||
|
||
export const imps = new Map(); |
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.
Why exporting a global map?
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.
I'm exporting it in order to make it testable. I'm using it into unit tests. An alternative could be making it as a property of the "spec" object.
|
||
export const spec = { | ||
aliases: ['exads'], // short code | ||
supportedMediaTypes: [BANNER, NATIVE, VIDEO], |
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.
You are missing your GVL_ID
here ( 1084 )
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.
Yes, you are good. Just put the GVL_ID.
Hey @giuseppe-exads , I'm trying to test and I have been unable to get any valid bid to go through. It's always either invalid or errors out. Do you have a set of params that would work for a test? |
Hey @Rothalack, I've configured one test for you on our adservers. It is related to a banner 300x250. You can interact with it using our prebidJS adapter, using the next model and param. Attention to some parameters! For some params you need to specify your custom values. Read the comments near to some params for more information. I've tested it on my side and it works. Let me know if you need other information and /or other tests. Thanks so much.
|
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.
Sorry for the delay, I thought I had already approved and merged this. This is working in testing for me, thanks for the testing set up!
Thanks @Rothalack! |
Type of change
Bugfix
Feature
New bidder adapter
Code style update (formatting, local variables)
Refactoring (no functional changes, no api changes)
Build related changes
CI related changes
Does this change affect user-facing APIs or examples documented on http://prebid.org?
Other
Description of change
Other information
doc - prebid/prebid.github.io#5237