Skip to content

Commit

Permalink
Fill initial bid request with all possible values from query paramete…
Browse files Browse the repository at this point in the history
…rs and headers during AMP processing (#1353)

* Fill initial bid request with all possible values from query parameters and headers during AMP processing

* Drop request.ext validation in AMP (since it is always present now) and simplify AmpRequestFactory

* Cleanup after refactoring
  • Loading branch information
schernysh authored and nickluck8 committed Aug 10, 2021
1 parent a58e480 commit a65a1c3
Show file tree
Hide file tree
Showing 3 changed files with 234 additions and 516 deletions.
3 changes: 2 additions & 1 deletion src/main/java/org/prebid/server/auction/FpdResolver.java
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,8 @@ public ExtRequest resolveBidRequestExt(ExtRequest extRequest, Targeting targetin
.data(resolvedExtRequestPrebidData != null
? resolvedExtRequestPrebidData
: extRequestPrebidData)
.bidderconfig(resolvedBidderConfig).build());
.bidderconfig(resolvedBidderConfig)
.build());
}

return extRequest;
Expand Down
Loading

0 comments on commit a65a1c3

Please sign in to comment.