From 386580aebd2f1b018a3e4c55cd0a299b38e3c0e9 Mon Sep 17 00:00:00 2001 From: dylan Date: Mon, 21 Dec 2020 17:05:54 -0700 Subject: [PATCH] Follow redirect in httpie Without the `--follow` the answer looks successful but empty. --- docs/tutorial/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md index ee839790f..d682b3696 100644 --- a/docs/tutorial/quickstart.md +++ b/docs/tutorial/quickstart.md @@ -187,7 +187,7 @@ We can now access our API, both from the command-line, using tools like `curl`.. Or using the [httpie][httpie], command line tool... - bash: http -a admin:password123 http://127.0.0.1:8000/users/ + bash: http --follow -a admin:password123 http://127.0.0.1:8000/users/ HTTP/1.1 200 OK ...