rs79.vrx.palo-alto.ca.us

curl get and post method



curl get and post method

the difference

GET

curl -o output-path URL

This will retrieve a get method url into output-path

POST

curl -d url-encoded-data -o output-path URL

This will retrieve a POST method url into output-path using url-encoded-data.