Skip to content
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

Orbidder Bid Adapter adds withCredentials=true header for bid and win requests #4464

Merged
merged 9 commits into from
Dec 2, 2019
2 changes: 1 addition & 1 deletion modules/orbidderBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const spec = {
const ret = {
url: `${spec.orbidderHost}/bid`,
method: 'POST',
options: { withCredentials: true },
options: { withCredentials: true },
data: {
pageUrl: referer,
bidId: bidRequest.bidId,
Expand Down