Last active
May 26, 2020 13:55
-
-
Save lebowvsky/cab3fa44b7d83b539fb7d08a83c25dd4 to your computer and use it in GitHub Desktop.
Protocole HTTP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### GET wilder | |
| GET https://http-practice.herokuapp.com/wilders | |
| Accept: application/json | |
| ### GET wilder | |
| GET https://http-practice.herokuapp.com/wilders?language=Java&page=2 | |
| Accept: application/json | |
| ### POST wilder | |
| POST https://http-practice.herokuapp.com/wilders | |
| Content-Type: application/json | |
| { | |
| "name": "Georges Abitbol", | |
| "language": "C#" | |
| } | |
| ### POST wilder | |
| POST https://http-practice.herokuapp.com/wilders | |
| Content-Type: application/x-www-form-urlencoded | |
| name=Micheline%20Doe&language=C%23 | |
| ### GET wilder | |
| GET https://http-practice.herokuapp.com/wilders/2115 | |
| Accept: application/json | |
| ### PUT wilder | |
| PUT https://http-practice.herokuapp.com/wilders/2117 | |
| Content-Type: application/json | |
| { | |
| "name": "Serge Gagnant", | |
| "language": "Java" | |
| } | |
| ### DELETE wilder | |
| DELETE https://http-practice.herokuapp.com/wilders/2111 | |
| Accept: application/json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment