You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
We are adding a cookie using $cookieStore as shown below. But this step will also create additional new cookies with sub domain name xyz.abc.com. These new copies are just copy of existing cookies added by prior server call with domain name .abc.com
To provide step by step details
Loading the page xyz.abc.com/index.html sets two cookies with domain .abc.com
Set a cookie on client side $cookieStore.put('cookieAng', 'Test'). Now you will see total 5 cookies.
Two original cookies with domain name .abc.com
one new cookie that we set through cookiestore with domain xyz.abc.com
two additional cookies (copy of original two cookies) with domain name xyz.abc.com
Hi,
in which browsers do you see this? Any or a specific browser? And to clarify, the problem is that angular diuplicates cookies that have been set from the server side?
@shahata Do you have any idea why this might happen? I'm actually not very knowledgable about cookie setting behavior.
It can be re produced in any browser. Yes. Some cookies were set on server with domain .abc.com even though host name is xyz.abc.com. As soon as I create a cooki with cookiStore it duplicates existing other cookies with different domain value(xyz.abc.com) and path.
@nmellempudi This shouldn't happen unless you changed the value of those cookies. Can you post an example on plunker or something similar that reproduces your issue?
We are adding a cookie using $cookieStore as shown below. But this step will also create additional new cookies with sub domain name xyz.abc.com. These new copies are just copy of existing cookies added by prior server call with domain name .abc.com
To provide step by step details
Two original cookies with domain name .abc.com
one new cookie that we set through cookiestore with domain xyz.abc.com
two additional cookies (copy of original two cookies) with domain name xyz.abc.com
Any thoughts? Below is bower.json
The text was updated successfully, but these errors were encountered: