updated rest testing

This commit is contained in:
James Tombleson 2024-04-05 17:53:50 -07:00
parent fbd799c8ed
commit bfa28e07da
1 changed files with 4 additions and 4 deletions

View File

@ -2,12 +2,12 @@
POST http://localhost:1323/api/v1/auth/register POST http://localhost:1323/api/v1/auth/register
Content-Type: application/x-www-form-urlencoded Content-Type: application/x-www-form-urlencoded
name=test&password=test1234! username=test&password=test1234!
### Login with user ### Login with user
POST http://localhost:1323/api/v1/auth/login POST http://localhost:1323/api/v1/auth/login
Content-Type: application/x-www-form-urlencoded Content-Type: application/x-www-form-urlencoded
name=test&password=test1234! username=test&password=test1234!
### Login with the admin token ### Login with the admin token
@ -23,7 +23,7 @@ Content-Type: application/json
Authorization: Bearer Authorization: Bearer
{ {
"name": "test", "username": "test",
"scopes": [ "scopes": [
"recipe:create" "recipe:create"
] ]
@ -35,7 +35,7 @@ Content-Type: application/json
Authorization: Bearer Authorization: Bearer
{ {
"name": "test", "username": "test",
"scopes": [ "scopes": [
"recipe:create" "recipe:create"
] ]