author: laplante@plcb.ca date: 2024-02-28 title: “HTTP::GET_COOKIE Function” version: 1.0.0 section: 1g category: GOWEB/HTTP


Name

http::get_cookie — Retrieve cookies from the HTTP request http::getCookie — Retrieve cookies from the HTTP request

Synopsis

http::get_cookie(“cookie_name”, …)

Description

The http::get_cookie function retrieves the value of a cookie from the current HTTP request.

Examples

// Retrieve a specific cookie
sessionID := http::get_cookie("extengoweb")
// Might return: "1234"

// Retrieve all cookies
allCookies := http::get_cookie()

See also

Version