We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
bug
AdForm adapter served bids (passed to bidsBackHandler) do not have any attribute to match them with bids from _bidsRequested.
adform bid contains adId which matches bidId from corresponding requsted bid (_bidsRequested)
there is adId, but it does not match _bidsRequested[*].bidId
independant
Made a hack myself, though there may be better solution (I used additional attribute requestBidId not to interfere with anything):
@@ -78,12 +78,14 @@ function AdformAdapter() { bidObject.width = adItem.width; bidObject.height = adItem.height; bidObject.dealId = adItem.deal_id; - bidmanager.addBidResponse(bid.placementCode, bidObject); } else { bidObject = bidfactory.createBid(2); bidObject.bidderCode = bidder; - bidmanager.addBidResponse(bid.placementCode, bidObject); } + + bidObject.requestBidId = bid.bidId; + + bidmanager.addBidResponse(bid.placementCode, bidObject); } };
The text was updated successfully, but these errors were encountered:
@prebid/adform Can you please check?
Sorry, something went wrong.
#947 to match Adform bids has been merged into master
No branches or pull requests
Type of issue
bug
Description
AdForm adapter served bids (passed to bidsBackHandler) do not have any attribute to match them with bids from _bidsRequested.
Steps to reproduce
Expected results
adform bid contains adId which matches bidId from corresponding requsted bid (_bidsRequested)
Actual results
there is adId, but it does not match _bidsRequested[*].bidId
Platform details
independant
Other information
Made a hack myself, though there may be better solution (I used additional attribute requestBidId not to interfere with anything):
The text was updated successfully, but these errors were encountered: