logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

get-cookie - (cookies)

Description

get-cookie obtains string <cookie value> of a cookie with the name given by string <cookie name>. A cookie would be obtained via incoming request from the client (such as web browser) or it would be set using set-cookie. The value of cookie is stored in <cookie value>. Cookies are often used to persist user data on the client, such as for maintaining session security or for convenience of identifying the user etc. You can obtain multiple cookies separated by a comma: get-cookie c = "mycookie", c1 = "mycookie1", c2="mycookie2"

Examples

Get value of cookie named "my_cookie_name" - variable my_cookie_value will hold its value: get-cookie my_cookie_value="my_cookie_name"

Name

get-cookie - (cookies)

Purpose

Get cookie value.

See Also

Cookies delete-cookieget-cookieset-cookie See all documentation $DATE $VERSION GOLF(2gg)

Syntax

get-cookie ( <cookie value> = <cookie name> ) ,...

See Also