1CURLOPT_COOKIELIST(3) curl_easy_setopt options CURLOPT_COOKIELIST(3)
2
3
4
6 CURLOPT_COOKIELIST - add to or manipulate cookies held in memory
7
9 #include <curl/curl.h>
10
11 CURLcode curl_easy_setopt(CURL *handle, CURLOPT_COOKIELIST,
12 char *cookie);
13
15 Pass a char * to a cookie string.
16
17 Such a cookie can be either a single line in Netscape / Mozilla format
18 or just regular HTTP-style header (Set-Cookie: ...) format. This will
19 also enable the cookie engine. This adds that single cookie to the
20 internal cookie store.
21
22 Exercise caution if you are using this option and multiple transfers
23 may occur. If you use the Set-Cookie format and don't specify a domain
24 then the cookie is sent for any domain (even after redirects are fol‐
25 lowed) and cannot be modified by a server-set cookie. If a server sets
26 a cookie of the same name (or maybe you've imported one) then both will
27 be sent on a future transfer to that server, likely not what you
28 intended. To address these issues set a domain in Set-Cookie (doing
29 that will include sub-domains) or use the Netscape format as shown in
30 EXAMPLE.
31
32 Additionally, there are commands available that perform actions if you
33 pass in these exact strings:
34
35 ALL erases all cookies held in memory
36
37
38 SESS erases all session cookies held in memory
39
40
41 FLUSH writes all known cookies to the file specified by CURLOPT_COOK‐
42 IEJAR(3)
43
44
45 RELOAD loads all cookies from the files specified by CURLOPT_COOK‐
46 IEFILE(3)
47
48
50 NULL
51
53 HTTP
54
56 /* This example shows an inline import of a cookie in Netscape format.
57 You can set the cookie as HttpOnly to prevent XSS attacks by prepending
58 #HttpOnly_ to the hostname. That may be useful if the cookie will later
59 be imported by a browser.
60 */
61
62 #define SEP "\t" /* Tab separates the fields */
63
64 char *my_cookie =
65 "example.com" /* Hostname */
66 SEP "FALSE" /* Include subdomains */
67 SEP "/" /* Path */
68 SEP "FALSE" /* Secure */
69 SEP "0" /* Expiry in epoch time format. 0 == Session */
70 SEP "foo" /* Name */
71 SEP "bar"; /* Value */
72
73 /* my_cookie is imported immediately via CURLOPT_COOKIELIST.
74 */
75 curl_easy_setopt(curl, CURLOPT_COOKIELIST, my_cookie);
76
77 /* The list of cookies in cookies.txt will not be imported until right
78 before a transfer is performed. Cookies in the list that have the same
79 hostname, path and name as in my_cookie are skipped. That is because
80 libcurl has already imported my_cookie and it's considered a "live"
81 cookie. A live cookie won't be replaced by one read from a file.
82 */
83 curl_easy_setopt(curl, CURLOPT_COOKIEFILE, "cookies.txt"); /* import */
84
85 /* Cookies are exported after curl_easy_cleanup is called. The server
86 may have added, deleted or modified cookies by then. The cookies that
87 were skipped on import are not exported.
88 */
89 curl_easy_setopt(curl, CURLOPT_COOKIEJAR, "cookies.txt"); /* export */
90
91 curl_easy_perform(curl); /* cookies imported from cookies.txt */
92
93 curl_easy_cleanup(curl); /* cookies exported to cookies.txt */
94
96 ALL was added in 7.14.1
97
98 SESS was added in 7.15.4
99
100 FLUSH was added in 7.17.1
101
102 RELOAD was added in 7.39.0
103
105 Returns CURLE_OK if the option is supported, CURLE_UNKNOWN_OPTION if
106 not, or CURLE_OUT_OF_MEMORY if there was insufficient heap space.
107
109 CURLOPT_COOKIEFILE(3), CURLOPT_COOKIEJAR(3), CURLOPT_COOKIE(3),
110 CURLINFO_COOKIELIST(3),
111
112
113
114libcurl 7.61.1 April 26, 2016 CURLOPT_COOKIELIST(3)