garrett7056
01/11/2023, 8:48 PMrp_st
01/12/2023, 5:06 AMporcellus
01/12/2023, 8:03 AMporcellus
01/12/2023, 8:04 AMporcellus
01/12/2023, 8:08 AMporcellus
01/12/2023, 8:09 AMcookieHandler
into the supertokens config. Using that you should be able to fully customize how we handle cookies, you could even make it use localstorage or some kind of in-memory thing completely circumventing tough-cookiesporcellus
01/12/2023, 8:19 AMdocument.cookie
(basically a string of the format cookieName1=value; cookie_name2=value...
)
- setCookie: by default this takes a string parameter and assigns it to document.cookie
. (this saves it into the cookie list, the format of the string is something like cookiename=value; cookieSettings...