From c5b6742e356999411e9dc9394c5e46b3f691eba6 Mon Sep 17 00:00:00 2001 From: Hugo Duthil Date: Mon, 5 Oct 2020 16:28:04 +0200 Subject: [PATCH] Add credentials and explicit options to CriteoIdSystem --- modules/criteoIdSystem.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/criteoIdSystem.js b/modules/criteoIdSystem.js index 017194d0e86..028700a6b94 100644 --- a/modules/criteoIdSystem.js +++ b/modules/criteoIdSystem.js @@ -103,7 +103,9 @@ function callCriteoUserSync(parsedCriteoData, gdprString) { } else if (jsonResponse.bundle) { saveOnAllStorages(bundleStorageKey, jsonResponse.bundle); } - } + }, + undefined, + { method: 'GET', contentType: 'application/json', withCredentials: true } ); }