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.
For some scenarios we need to access a raw cookie rather than encoded one. This is especially important when dealing with legacy systems that relies on unencoded cookie values.
The text was updated successfully, but these errors were encountered:
The existing behavior is fairly surprising and undocumented honestly. It took me a good while to debug why my content was being double url encoded. I thought it might be my server component doing something crazy, but it was because I was URL encoding my value before using $cookies.put, and it was even harder to debug because $cookies.get was showing me the same value I was putting, but thats because it does decoding on retrieval as well.
For some scenarios we need to access a raw cookie rather than encoded one. This is especially important when dealing with legacy systems that relies on unencoded cookie values.
The text was updated successfully, but these errors were encountered: