From 434d0b6d8cb33043b1fb942f8e6c96c6dfbadc3f Mon Sep 17 00:00:00 2001 From: luca Date: Thu, 17 May 2018 15:34:06 +1000 Subject: [PATCH] change application type to application\json for playground adapter --- modules/playgroundxyzBidAdapter.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/playgroundxyzBidAdapter.js b/modules/playgroundxyzBidAdapter.js index 065cb4b9154..477ef9a3706 100644 --- a/modules/playgroundxyzBidAdapter.js +++ b/modules/playgroundxyzBidAdapter.js @@ -68,10 +68,16 @@ export const spec = { } const payloadString = JSON.stringify(payload); + const options = { + contentType: 'application/json', + withCredentials: false + }; + return { method: 'POST', url: URL, data: payloadString, + options, bidderRequest }; },