-
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
[Telaria] getBidderRequest can not find corresponding bid due to mismatching bidder code #3398
Comments
@telariaEng tagging you as this is probably relevant |
@ReinoutStevens thanks for tagging. I do have an open PR and I don't mind adding 'TremorVideo' to the alias list. But I think the proper fix would be to check the bidder code against the aliases while ignoring the case. |
Thanks for the quick response 👍 |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
has this been resolved? @telariaEng |
Obviously I dont work at Telaria, but this is how I see the current state: Telaria has 2 aliases, tremor and tremorvideo. The adapter used to set TremorVideo as bidder on a bid. In their PR ( #3377 ) they modified the behavior and do a to lowercase, so now tremorvideo should be set. This means we can use tremorvideo as bidder code, and it should work. However, this does not fix the underlying issue: I would expect when I request a bid using 'telaria' that the biddercode set by the adapter would be 'telaria', and not tremor or tremorvideo. This could be due to a misunderstanding of the aliases on Telaria's part (or on my part, and this behavior is fine). In case this behavior is fine then prebid should look at aliases as well in the |
I am unsure whether I need to open a new issue or hijack this one: |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Type of issue
The telaria adapter returns bids with bidder code "TremorVideo".
This results in utils/getBidderRequest not being able to match the bidder id "TremorVideo" to any bids, as the bid either has the code "telaria", "tremor" or "tremorvideo".
So even when using the alias "tremorvideo" it won't ever match "TremorVideo".
Description
The reply we get the following bid response from Telaria:
Looking at the telariaBidAdapter:
So, the
bidResult.seatbid[0].seat
is taken out of the reply, and used as the bidder code.The prebid method
auction.addBidResponse(adUnitCode, bid)
callsgetBidRequests
, which tries to match "telaria" (or "tremor" or "tremorvideo" if you use one of the aliases) to "TremorVideo", which does't work.Test page
https://jsfiddle.net/yeqjf7r4/
Test page uses our own build of prebid as the Telaria adapter has other issues in the latest version of prebid. The underlying issue still remains.
Platform details
prebid 1.31.0
Telaria bid adapter is broken on more recent builds
The text was updated successfully, but these errors were encountered: