1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-02 22:58:01 +00:00
Files
til/unix/curl-with-cookies.md
2020-12-29 18:55:11 -06:00

16 lines
483 B
Markdown

# Curl With Cookies
Some endpoints require certain cookies to be included in order to get the
response you are looking for. For instance, if the endpoint is authenticated
with a session cookie, then you will need to provide that session cookie when
curling.
The `-b` flag can be used to instruct `curl` to include a cookie in the header
of a request.
```bash
$ curl -b session=abc123SessionToken https://authenticated-url.com
```
See `man curl` for more details and other flags.