im setting a cookie with set cookie from server to react app in another domain with all the relevant heders:
“set-cookie”: “test=tests;samesite=none;secure=false;”,
“Access-Control-Allow-Headers” : “set-cookie, cookie; samesite=none;secure”,
“Access-Control-Allow-Origin”: “http://somedomain.com”,
“Access-Control-Allow-Methods”: “OPTIONS,POST,GET”,
“Content-Type”: “application/json”,
“Access-Control-Allow-Credentials”: “true”,
and i can see the set-cookie header in responce but the cookie isn’t getting set in chrome.
can someone help with this issue?