1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-02 22:58:01 +00:00

Add Curl With Cookies as a unix til

This commit is contained in:
jbranchaud
2020-12-29 18:55:11 -06:00
parent 0bd976aeb3
commit df3945eca7
2 changed files with 17 additions and 1 deletions

View File

@@ -10,7 +10,7 @@ pairing with smart people at Hashrocket.
For a steady stream of TILs, [sign up for my newsletter](https://tinyletter.com/jbranchaud).
_987 TILs and counting..._
_988 TILs and counting..._
---
@@ -908,6 +908,7 @@ _987 TILs and counting..._
- [Copying File Contents To System Paste Buffer](unix/copying-file-contents-to-system-paste-buffer.md)
- [Copying Nested Directories With Ditto](unix/copying-nested-directories-with-ditto.md)
- [Create A File Descriptor with Process Substitution](unix/create-a-file-descriptor-with-process-substitution.md)
- [Curl With Cookies](unix/curl-with-cookies.md)
- [Curling For Headers](unix/curling-for-headers.md)
- [Curling With Basic Auth Credentials](unix/curling-with-basic-auth-credentials.md)
- [Display All The Terminal Colors](unix/display-all-the-terminal-colors.md)

15
unix/curl-with-cookies.md Normal file
View File

@@ -0,0 +1,15 @@
# 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.