Skip to content

Instantly share code, notes, and snippets.

View zenzue's full-sized avatar

Aung Myat Thu zenzue

  • Myanmar
View GitHub Profile
@zenzue
zenzue / CURL-cheatsheet.md
Created July 15, 2018 11:12 — forked from Kartones/CURL-cheatsheet.md
CURL Cheatsheet
  • XML GET
curl -H "Accept: application/xml" -H "Content-Type: application/xml" -X GET "http://hostname/resource"
  • JSON GET
curl -i -H "Accept: application/json" -H "Content-Type: application/json" -X GET "http://hostname/resource"
  • JSON PUT