Skip to content

Instantly share code, notes, and snippets.

@angelique-w
Created November 25, 2019 21:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angelique-w/9a6304099de3267cc8c563cd1c6a01b9 to your computer and use it in GitHub Desktop.
Save angelique-w/9a6304099de3267cc8c563cd1c6a01b9 to your computer and use it in GitHub Desktop.
###
GET https://http-practice.herokuapp.com/wilders
Accept: application/json
###
GET https://http-practice.herokuapp.com/wilders?page=2&language=PHP
###
POST https://http-practice.herokuapp.com/wilders
Content-Type: application/x-www-form-urlencoded
name=David&language=JavaScript
###
POST https://http-practice.herokuapp.com/wilders
Content-Type: application/json
{
"name": "Sophie",
"language": "PHP"
}
###
GET https://http-practice.herokuapp.com/wilders/1502
###
PUT https://http-practice.herokuapp.com/wilders/1500
Content-Type: application/json
{
"name": "Monique"
}
###
DELETE https://http-practice.herokuapp.com/wilders/1500
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment