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…

Robocopy exclude Directories

Just trying to copy everything except a couple of directories from a drive to my NAS This is the secret incantation of...