httpie post 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