Answers for "httpie authorization header"

2

authorization header http

Authorization: <type> <credentials>
Posted by: Guest on April-10-2021
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
0

how to post a file httpie

$ http --form PUT httpbin.org/put photo=@/images/photo.png
Posted by: Guest on September-03-2020

Browse Popular Code Answers by Language