I was looking into a way to get all cookies, even those defined externally such as web_auth in a login page.
I think that there is a solution in the universal-cookie package:
Server Example:
const cookies = new Cookies(req.headers.cookie);
so could be possible to have an additional version for server?
at this moment I see only this option available in extra_streamlit_components/CookieManager/frontend/src/CookieManager.jsx:
const cookies = new Cookies()
I was looking into a way to get all cookies, even those defined externally such as web_auth in a login page. I think that there is a solution in the universal-cookie package:
https://www.npmjs.com/package/universal-cookie
Server Example: const cookies = new Cookies(req.headers.cookie);
so could be possible to have an additional version for server?
at this moment I see only this option available in extra_streamlit_components/CookieManager/frontend/src/CookieManager.jsx: const cookies = new Cookies()