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

TPMN Bid Adapter: remove OptionsObject #10777

Merged
merged 15 commits into from
Nov 30, 2023
3 changes: 1 addition & 2 deletions modules/tpmnBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,7 @@ function createRequest(bidRequests, bidderRequest, mediaType) {
return {
method: 'POST',
url: BIDDER_ENDPOINT_URL + '?v=' + ADAPTER_VERSION,
data: rtbData,
options: { contentType: 'application/json;charset=UTF-8', withCredentials: false }
data: rtbData
}
}

Expand Down