Example Curl POST request for XML document from CakePHP

Written by James McDonald

June 25, 2018

This is an example of using the curl command to request a CakePHP URL and post form data to it. It uses xmllint to format the output and highlight (under MacOS) to colorize the output

#!/bin/sh
# save as curlIt.sh
curl -s \
-d "data[Label][start_date][day]=25&data[Label][start_date][month]=06&data[Label][start_date][year]=2018" \
-H "Accept: text/xml" http://servername/path/to/CakePHP/Form |\
xmllint --format - |\
highlight --syntax=xml --out-format=ansi

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.

You May Also Like…

Network speed test host to host

On Ubuntu / Debian apt-get install iperf3 On Windows download it from https://iperf.fr/iperf-download.php#windows Make...

Clear HSTS Settings in CHrome

Open chrome://net-internals/#hsts enter the domain in the query field and click Query to confirm it has HSTS settings...