Cookies
Dave Cragg
dcragg at lacscentre.co.uk
Thu May 2 10:01:01 EDT 2002
At 9:49 am +0000 2/4/02, David Bovill wrote:
>Has anyone managed to set Cookies with libURL?
I've not done it, and don't know too much about the mechanism, but it
should be possible using the httpHeaders property and the
libUrlLastRHHeaders() function.
libUrlLastRHHeaders() returns the headers of the reponse to the most
recent http request. You should be able to parse out the cookie
header from this, and store it or whatever you need to do.
When sending a cookie from client to server, you can set the
httpHeaders to something like:
Cookie: $Version="1"; Customer="WILE_E_COYOTE"; $Path="/acme"
(example from rfc 2965. <http://www.faqs.org/rfcs/rfc2965.html>)
The httpHeaders gets set to empty after each request.
Cheers
Dave Cragg
More information about the use-livecode
mailing list