Last active
November 3, 2023 05:00
-
-
Save mjmenger/87599c32577e69127935f775dfc1cc7d to your computer and use it in GitHub Desktop.
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 http://{{ httpbinserver}}/get | |
### | |
GET http://{{ httpbinserver}}/basic-auth/username/password | |
Authorization: Basic username:password | |
### | |
PUT https://{{ httpbinserver}}/put | |
Content-Type: application/json | |
{ | |
"happy": "sad" | |
} | |
### | |
POST https://{{ httpbinserver}}/post | |
Content-Type: application/json | |
{ | |
"happy": "sad" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment