You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Accept user for passing request data is through redirected stdin (standard input)—piping.
Receiving the inputs from this method is similar to using --raw flag with the content passed in stdin.
The objective is to replicate this feature in HTTPie: https://httpie.io/docs/cli/redirected-input
Accept user for passing request data is through redirected stdin (standard input)—piping.
Receiving the inputs from this method is similar to using
--raw
flag with the content passed in stdin.treq PUT api.com/put < files/data.json
These three command are equivalent (consider the file.json with content as
{"name": "Thales"}
)Additional Considerations:
It's really important use the same abstraction used by
--raw
flag. That way is even possible to merge the input from this with request items.This command
would request with body...
The text was updated successfully, but these errors were encountered: