This repository was archived by the owner on Jun 28, 2022. It is now read-only.

Description
in server.js, it says
app.use((req, res, next) => {
const token = req.get('Authorization')
if (token) {
req.token = token
next()
} else {
res.status(403).send({
error: 'Please provide an Authorization header to identify yourself (can be whatever you want)'
})
}
})
note: Authorization is required, not as per documentation AuthorizationReactND