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

Adding GumGum server adapter #748

Merged
merged 4 commits into from
Dec 6, 2018
Merged

Adding GumGum server adapter #748

merged 4 commits into from
Dec 6, 2018

Conversation

cchang320
Copy link
Contributor

No description provided.

@cchang320 cchang320 force-pushed the master branch 4 times, most recently from 48c31ee to 01c1ed1 Compare November 19, 2018 22:21
}
request.Imp[i].Banner = &bannerCopy
validImps = append(validImps, request.Imp[i])
trackingId = zone
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You might want to do some checks if people are passing inconsistent values across the imps. Shouldn't happen in theory, but users can end up doing all sorts of crazy things.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it possible for the user to send different values (unless they decide to randomly generate this value in which case none of these values would be valid on GumGum's end)? Since whatever is in the imp.ext object is hard coded when the user sets up the client for the site right?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is one imp.ext for each imp, so technically it could be possible to send inconsistent values. It would be a strong indication that there is something seriously wrong with their prebid implementation to generate a mess like that. I am not going to deny this PR if there is no check, just wanted to offer it as an idea to consider.

"description": "A tracking id used to identify GumGum zone.",
"minLength": 8
},
"deviceHeight": {
Copy link
Contributor

@dbemiller dbemiller Nov 28, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey, I'm a little confused by deviceWidth and deviceHeight here.

Bidder params are generally defined by Publishers when they set up their page. The device size will change user-by-user... so how would a publisher define them?

Also: OpenRTB already has request.device.w and request.device.h for these... I see you copying it in your adapter. Shouldn't the code on the page (prebid.js or prebid-mobile) just define those when it makes the OpenRTB request? It doesn't seem like they're values that would change between adapters.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure I can clarify. I was testing my adapter with my coworker who created a test page running the Prebid client and we noticed that the device object never got sent in the bid request. We spoke with a publisher that wants to call us through Prebid server and asked if they can send over the device info in the request and they told us that they do not control what gets sent over in the request since they run Prebid.js. So I was under the impression that Prebid.js is not sending the device info in the request.

Regarding how the publisher would set this up, the way my coworker defined the device width and height params was by using the functions window.innerWidth() and window.innerHeight().

Please let me know if there was perhaps some issue with our test page setup and the device info does actually get sent over through Prebid.js.

Copy link
Contributor

@dbemiller dbemiller Nov 28, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Aha! Yeah, that makes sense. Thanks!

Your test page was probably fine... Prebid.js just isn't sending these yet. I opened prebid/Prebid.js#3336 to add them, though.

If you want to test with that branch, it'd be a big help. I hacked it out, but I'm pretty sure it'll fix this problem. I'll test it for real tomorrow, though.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Gotcha! Will you be merging your changes soon? I’m out of office this week so I can test with your branch on Monday. If I still don’t see the device info included in the request, how should we proceed?

Copy link
Contributor

@dbemiller dbemiller Nov 29, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ugh... so: yes, I plan to merge these changes as soon as possible. They're small, so I can nag the Prebid.js team for a review if necessary.

...but right now the tests don't pass, and I can't even build it locally because of prebid/Prebid.js#3330. The Prebid.js folks are waiting on avevlad/gulp-connect#259, which is outside of our control.

So... I definitely will try to get this in quickly, but can't promise a timeline either.

If you still don't see the device info included in the request, feel free to ping me on it. I do plan on testing myself, though, once the project is buildable again.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah I see. I know you said it’s hard to give a timeline but do you think the issues will be resolved by the end of December? Trying to merge my adapter before the end of Q4 :) Also in the case you think it won’t be merged by the end of December, would it be terrible to merge my adapter as is and get rid of the device width and height in the ext object once your changes have been merged and the device info is being sent over?

Copy link
Contributor

@dbemiller dbemiller Dec 4, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We merged it now :). It's live in version 1.35.0: https://github.com/prebid/Prebid.js/releases/tag/1.35.0

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome news! Okay I will go ahead and remove the device width and height from the extension object and see how it goes. Thanks!

dbemiller
dbemiller previously approved these changes Dec 6, 2018
Copy link
Contributor

@dbemiller dbemiller left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good!

I left one comment because I saw some suspicious logic, and it seemed like a bug... but that's ultimately your call.


request.Imp = validImps

if request.Site != nil {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I notice in your static/bidder-info that you also support apps... did you want to do something with the tracking ID for those here too? Maybe in req.App?

It seems a bit weird that the zone info doesn't make it anywhere into the request that goes to your servers on App requests.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry that's an oversight on my end. GumGum will only support site for now so I'll correct our bidder-info file. Thanks for catching that! If I modify that file will you have to reapprove?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah, but it's fine. We're active :)

@dbemiller dbemiller removed their assignment Dec 6, 2018
hhhjort
hhhjort previously approved these changes Dec 6, 2018
@cchang320 cchang320 dismissed stale reviews from hhhjort and dbemiller via d211b65 December 6, 2018 18:13
@dbemiller dbemiller merged commit c30e469 into prebid:master Dec 6, 2018
katsuo5 pushed a commit to flux-dev-team/prebid-server-1 that referenced this pull request Dec 1, 2020
* gumgum adapter implementation

* removing device info params since newest prebid client started sending over device info

* secure endpoints for gumgum

* removing app from gumgum bidder info
katsuo5 pushed a commit to flux-dev-team/prebid-server-1 that referenced this pull request Dec 2, 2020
* gumgum adapter implementation

* removing device info params since newest prebid client started sending over device info

* secure endpoints for gumgum

* removing app from gumgum bidder info
katsuo5 pushed a commit to flux-dev-team/prebid-server-1 that referenced this pull request Dec 4, 2020
* gumgum adapter implementation

* removing device info params since newest prebid client started sending over device info

* secure endpoints for gumgum

* removing app from gumgum bidder info
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants