HTTP 401 — Unauthorized
Not Authorized
You do not have permission to access this resource.
This domain is restricted or currently in development.
1// server response
2const status = 401;
3const message = "Not Authorized";
4
5res.status(status).send(message);