HTTP::GET_COOKIE
1g 2024-02-28 laplante@plcb.ca GOWEB/HTTPauthor: laplante@plcb.ca date: 2024-02-28 title: “HTTP::GET_COOKIE Function” version: 1.0.0 section: 1g category: GOWEB/HTTP
http::get_cookie — Retrieve cookies from the HTTP request http::getCookie — Retrieve cookies from the HTTP request
http::get_cookie(“cookie_name”, …)
The http::get_cookie
function retrieves the value of a cookie from the
current HTTP request.
null
otherwise.null
if no cookies are set.// Retrieve a specific cookie
sessionID := http::get_cookie("extengoweb")
// Might return: "1234"
// Retrieve all cookies
allCookies := http::get_cookie()