Re: [whatwg/fetch] Fetch not sending cookies ? SameSite=none Secure credentials include cors (Issue #1354)

try{
 let response = await fetch(url, {
  method: 'POST',
  credentials: 'include',,
  body: null,
  mode: "cors"
 })
 console.log(response);
} catch (err){
 console.log(err);
}

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/issues/1354#issuecomment-968451212

Received on Monday, 15 November 2021 02:04:21 UTC