Eric Jhon Jumaday
GET
, POST
, PUT
, etc.). These methods can only be invoked through external HTTP requests, whereas regular functions can only be called within the program itself.GET
, POST
, PUT
, DELETE
). These methods are intended to handle external HTTP requests and generate responses.GET
HTTP request. It sends a simple "Hello! from BackPack" response with an HTTP 200 OK
status.POST
request on the /auth/login
endpoint. It expects a JSON body with username
and password
fields. If the authentication fails, it responds with a 401 Unauthorized
status. If the login is successful, it generates a token and responds with a 200 OK
status and a JSON object containing the success message and token.GET
, POST
).