79085337

Date: 2024-10-14 08:31:44
Score: 1.5
Natty:
Report link

My problem was in the code that does the request. It is angular and I use the angular http client.

With this http client you have to activate cookie sending via

this.http.post(
    this.spacesApiUrl, bodyData,
    {
        withCredentials: true   // adds cookies
    }
)

So if you have the same problem, chances are your code (the library you use) does not add the cookies. And as no cookies are added, no cookies tab is shown in chrome.

Reasons:
  • Has code block (-0.5):
  • Me too answer (2.5): have the same problem
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: andymel