Closed
Description
Cookies stored in main domain is not getting to subdomains
When I call request 1, I get a cookie with the attribute (for example js) js=value; Domain=example.com; Path=/; Secure; HttpOnly
Then i call a second reqeust, which I need to get the cookie value of the js attribute.
However, I'm calling the request on the subdomain https://www.example.com and at this point, I can't get the cookie into the request.
The correct behavior should be that if I store the cookie in the main domain example.com, then this cookie should be applied to all requests in the subdomains.
I try same thing in Postman and there is everything OK