how to install httpie linux code example
Example 1: httpie on windows
pip install --upgrade pip setuptools pip install --upgrade httpie
Example 2: post with httpie
echo '{"example": "exampleData"}' | http POST https://addressToPost.com/post
// OR
http POST https://addressToPost.com/post example=exampleData
// Both work the same way
Example 3: httpie on windows
python -m pip install --upgrade pip