Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 385 Bytes

more_post_parameters.md

File metadata and controls

16 lines (11 loc) · 385 Bytes

More POST parameters

Using curl for fast assertion of some HTTP based services is nifty.

One thing, which was not completely clear for me from the man-page is how to provide more than one parameter.

$ curl -F foo=bar https://someurl/

But I just tried using more than one -F flag and it worked like a charm

$ curl -F foo=bar -F baz=foo https://someurl/