HypeLab Bid Adapter: Migrate to OpenRTB endpoint#14863
Merged
Merged
Conversation
Migrate HypeLab bid adapter from custom /v1/prebid_requests format to OpenRTB 2.6-compliant /v1/rtb_requests endpoint using Prebid's built-in ortbConverter. Remove legacy event reporting callbacks (onTimeout, onSetTargeting, onBidderError); keep onBidWon to fire burl pixel.
| source: 'prebid', | ||
| sdk_version: PREBID_VERSION, | ||
| provider_version: PROVIDER_VERSION, | ||
| dpr: typeof window !== 'undefined' ? getDevicePixelRatio(window) : 1, |
Collaborator
|
Related #14562 |
Collaborator
|
This seems like a resubmission of #14562 without addressing the feedback there |
Contributor
Author
Yes, I fixed the issues that the review bot raised in this one (UID + floor) |
patmmccann
approved these changes
May 12, 2026
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 change
Description of change
Our old
v1/ad_requestsendpoint was deprecated and this change to our bidding adapter uses the new request endpointv1/rtb_requests, which follows the OpenRTB 2.6 spec. We updated the adapter to use the builtinortbConverterutil to simplify a lot of the old logic related to building requests & parsing responses while retaining our required parameters in theextfields. This change has no outward effects on publishers as the integration requirements remain the same (property_slug,placement_slug).