Cgi.setCookie

Sets an HTTP cookie, automatically encoding the data to the correct string. expiresIn is how many milliseconds in the future the cookie will expire. TIP: to make a cookie accessible from subdomains, set the domain to .yourdomain.com. Note setCookie() must be called *before* you write() any data to the output.

class Cgi
void
setCookie
(
string name
,
string data
,
long expiresIn = 0
,
string path = null
,
string domain = null
,
bool httpOnly = false
,
bool secure = false
,)

Meta

History

Parameter sameSitePolicy was added on January 11, 2021.