package http-cookie
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=cdb91d7ee5420c38503fd3b333d0349a2c6689166b8c17f95fda8cd1c2454ed6
sha512=2f024dfaa1062e5701e811f933ce84ec674b579a3cded8a5279fc34366a4de360cd5f0ca3f68311f6ff527ec8a8a5c71325f8849bb05b8e98bf467bd33762191
Description
A comprehensive and strict standards compliant HTTP cookies library for ocaml.
http-cookie supports consuming and creating HTTP cookies found in HTTP request Cookie header and in Set-Cookie header in HTTP response. The library validates all cookie attributes, cookie name and cookie value for standards conformance and correct usage. The validation suite is comprehensive and includes validation of domain name, IPv4, IPv6 and HTTP date-time formats.
The RFC standards/validations implemented by the library are:
- RFC 6265
- RFC 1123
- RFC 1034
- IPV4/IPV6 address validation
Published: 21 Aug 2021
README
Cookies
A comprehensive and strict standards compliant HTTP cookies library for ocaml. API Documentation
http-cookie
supports consuming and creating HTTP cookies found in HTTP request Cookie
header and in Set-Cookie
header in HTTP response. The library validates all cookie attributes, cookie name and cookie value for standards conformance and correct usage. The validation suite is comprehensive and includes validation of domain name, IPv4, IPv6 and HTTP date-time formats.
The RFC standards implemented by the library are:
Cookies - RFC 6265 - Strict standards compliance.
HTTP Date - RFC 1123 - HTTP date time format specification.
Domain Name - RFC 1034 - Domain name format specification.
Hosts - RFC 1123 - Host name format specification.
IPv4/IPv6 - IPv4 and IPv6 address format specification.
Usage
# #require "http-cookie";;
# #install_printer Http_cookie.pp;;
HTTP Cookie
header value:
# let s = "SID=234234asdasdasda" in
let c = List.nth (Http_cookie.of_cookie s |> Result.get_ok) 0 in
let s1 = Http_cookie.to_cookie c in
s = s1 ;;
- : bool = true
HTTP Set-Cookie
header value:
# let s = "SID=31d4d96e407aad42; Path=/; Domain=ffff::0234:ddd:192.168.0.1; Expires=Sun, 06 Nov 1994 08:49:37 GMT; Secure; HttpOnly" in
let c = Http_cookie.of_set_cookie s |> Result.get_ok in
let s2 = Http_cookie.to_set_cookie c in
s = s2
- : bool = true
Create HTTP cookie:
# Http_cookie.create ~path:"/home" ~domain:"eee:aaa:abdf::223:192.168.0.1" ~secure:true ~same_site:`Strict ~name:"SID" "31d4d96e407aad42";;
- : (Http_cookie.t, string) result =
Ok
name: SID
value: 31d4d96e407aad42
path: /home
domain: eee:aaa:abdf::223:192.168.0.1
expires:
max_age:
secure: true
http_only: true
same_site: Strict
extension: