diff --git a/src/adapters/rhythmone.js b/src/adapters/rhythmone.js index 46f3ffb0160..b86d3aee4d3 100644 --- a/src/adapters/rhythmone.js +++ b/src/adapters/rhythmone.js @@ -50,7 +50,7 @@ module.exports = function(bidManager, global, loader){ callback(200, "success", response.responseText); else callback(-1, "http error "+response.status, response.responseText); - }, false, {method:"GET"}); + }, false, {method:"GET", withCredentials: true}); } else{ loader(url, function(responseText, response){ @@ -58,7 +58,7 @@ module.exports = function(bidManager, global, loader){ callback(200, "success", response.responseText); else callback(-1, "http error "+response.status, response.responseText); - }, postData, {method:"POST", contentType: "application/json"}); + }, postData, {method:"POST", contentType: "application/json", withCredentials: true}); } } @@ -115,6 +115,7 @@ module.exports = function(bidManager, global, loader){ function noBids(params){ for(var i=0; i