9 lines
312 B
Bash
9 lines
312 B
Bash
#curl -X POST http://localhost:8080/api/auth/register \
|
|
# -H "Content-Type: application/json" \
|
|
# -d '{"username":"test","password":"cGFzc3dvcmQ="}'
|
|
|
|
|
|
curl -X POST http://localhost:8080/api/auth/register \
|
|
-H "Content-Type: application/json" \
|
|
-d '{"username":"newtest","password":"cGFzc3dvcmQ="}'
|