Answers for "post with httpie"

2

install httpie linux

# Debian, Ubuntu, etc.
sudo apt install httpie

# Fedora
dnf install httpie

# CentOS, RHEL, ...
yum install httpie

# Arch Linux
pacman -S httpie
Posted by: Guest on September-01-2020
4

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
Posted by: Guest on September-01-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language