New adapter: HypeLab - #4488
Open
Minebomber wants to merge 5 commits into
Open
Conversation
CTMBNara
requested changes
May 13, 2026
Author
|
Thanks for the feedback, I made an update based off of your review @CTMBNara |
CTMBNara
requested changes
May 19, 2026
Author
|
Thanks for helping me work through this @CTMBNara. I pushed a patch for your requested changes. |
Collaborator
|
@Minebomber currently, PBS is on hold for adapter merges. The main focus is the next major update, 4.0, which should be finished by the end of Q2. Once that is done, we should be unblocked for merging other PRs. Sorry for the inconvenience. |
CTMBNara
requested changes
Jun 15, 2026
The HypeLab exchange sets mtype on every bid, so drop the creative_type, VAST markup, and imp-based fallbacks and resolve the media type from mtype alone. Document why imp.ext.bidder and ext.source / ext.provider_version are forwarded. Add the hype alias for parity with the Go adapter and Prebid.js.
CTMBNara
requested changes
Aug 11, 2026
Comment on lines
+86
to
+88
| // The HypeLab exchange resolves the property and placement from | ||
| // imp.ext.bidder.property_slug / placement_slug, so the params must be | ||
| // forwarded in the outgoing request. |
Comment on lines
+115
to
+117
| // Sets ext.source and ext.provider_version, which the HypeLab exchange | ||
| // requires to identify the integration type and version of the caller | ||
| // (its bidding logic differs between prebid and SDK traffic). |
Comment on lines
+171
to
+172
| // The HypeLab exchange sets mtype on every bid, so no markup or imp-based | ||
| // fallback is needed to resolve the media type. |
CTMBNara
requested changes
Aug 11, 2026
| cookie-family-name: hypelab | ||
| redirect: | ||
| url: https://api.hypelab.com/v1/i?redirect_url={{redirect_url}}&gdpr={{gdpr}}&gdpr_consent={{gdpr_consent}}&us_privacy={{us_privacy}}&gpp={{gpp}}&gpp_sid={{gpp_sid}} | ||
| support-cors: false |
Collaborator
There was a problem hiding this comment.
Update with latest master and remove support-cors
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🔧 Type of changes
✨ What's the context?
This PR adds the HypeLab bid adapter to Prebid Server Java.
The adapter supports site banner, native, and video inventory. It accepts
property_slugandplacement_slugbidder params, forwards eligible OpenRTB 2.6 requests to HypeLab, adds HypeLab display manager metadata, and maps HypeLab bid responses back into Prebid bid types.🧠 Rationale behind the change
HypeLab needs a dedicated adapter because the request is not just a raw OpenRTB pass-through. The adapter validates required bidder params, sets
tagidfromplacement_slug, preserves the HypeLab bidder ext, adds provider metadata, and resolves response bid type frommtype,ext.hypelab.creative_type, VAST markup, or the original impression media type.🔎 New Bid Adapter Checklist
🧪 Test plan
How do you know the changes are safe to ship to production?
/openrtb2/auctionpath and HypeLab adapter configuration../mvnw -Dtest=HypeLabBidderTest testsuccessfully.HypeLabBidder: 96% instruction coverage and 97% line coverage.🏎 Quality check