From 7ccc8c4610edcda420cfeae27e962a8e3b31926a Mon Sep 17 00:00:00 2001 From: steve-chavez Date: Fri, 2 Aug 2019 13:33:59 -0500 Subject: [PATCH] Fix #197, add note about axios url encoding --- api.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api.rst b/api.rst index 074135b58..d1599e02d 100644 --- a/api.rst +++ b/api.rst @@ -288,6 +288,10 @@ Here ``information.cpe`` is a column name. GET /vulnerabilities?%22information.cpe%22=like.*MS* HTTP/1.1 +.. note:: + + Some http libraries might encode URLs automatically(e.g. :code:`axios`). In these cases you should use double quotes + :code:`""` directly instead of :code:`%22`. Ordering --------