Minimal api for prc, stateless JWT & public API for NRTS-PRC
Start the server by running npm start
Check the swagger-ui on http://localhost:3000/docs
- POST
http://localhost:3000/api/login/token
with the following body{ "username": "username", "password": "password" }
and take the token that you get in the response
- GET
http://localhost:3000/api/application
again with the following headerAuthorization: Bearer _TOKEN_
, replacing_TOKEN_
with the value you got from request #4