Skip to content

Instantly share code, notes, and snippets.

@swann44
Created June 8, 2020 15:46
Show Gist options
  • Save swann44/f18e2df4f814147805834a7f2628bd6a to your computer and use it in GitHub Desktop.
Save swann44/f18e2df4f814147805834a7f2628bd6a to your computer and use it in GitHub Desktop.
GET https://http-practice.herokuapp.com/wilders
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=John%20Doe&language=C%23
POST https://http-practice.herokuapp.com/wilders
Content-Type: application/json
{
"name": "Jane Smith",
"language": "JavaScript"
}
GET https://http-practice.herokuapp.com/wilders/2654
PUT https://http-practice.herokuapp.com/wilders/2654
Content-Type: application/json
{
"name" : "Micheline Smith",
"language" : "Java"
}
DELETE https://http-practice.herokuapp.com/wilders/2654
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment