From 20f01709ea34acc963281cbcb969a6ca370d409d Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Tue, 1 Mar 2016 23:48:13 +0800 Subject: [PATCH] Mention URL escaping Closes #311 --- README.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 22f97a44..abbbf3dc 100644 --- a/README.rst +++ b/README.rst @@ -288,17 +288,17 @@ If the port is omitted, then port 80 is assumed. If you find yourself manually constructing URLs with **querystring parameters** on the terminal, you may appreciate the ``param==value`` syntax for appending URL parameters so that you don't have to worry about escaping the ``&`` -separators. To search for ``HTTPie`` on Google Images you could use this -command: +separators and as well as special character in parameter values. +To search for ``HTTPie logo`` on Google Images you could use this command: .. code-block:: bash - $ http GET www.google.com search==HTTPie tbm==isch + $ http www.google.com search=='HTTPie logo' tbm==isch .. code-block:: http - GET /?search=HTTPie&tbm=isch HTTP/1.1 + GET /?search=HTTPie+logo&tbm=isch HTTP/1.1 =============