POST request changed to GET request (#16022)

This commit is contained in:
Nitish Kumar 2022-10-31 18:33:18 +05:30 committed by GitHub
parent 4ed408c90b
commit 38a6523d2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ When you run this command, youll notice that you were not returned to the com
Lets open a new terminal then make a GET request to the server using the curl command.
```console
$ curl --request POST \
$ curl --request GET \
--url http://localhost:8000/test \
--header 'content-type: application/json' \
--data '{"msg": "testing"}'