This repo is a response for one of json-server questions
git clone https://github.com/Nilegfx/json-server-answer-417.git
cd json-server-answer-417
npm install
node server
from your command line, run
curl -u yourusername:yourpassword http://localhost:3000/posts
responses with status 200:
{
"user": "yourusername",
"body": [
{
"id": 1,
"title": "first post title",
"name": "ahmed ayoub"
}
]
}
from your command line, run
curl http://localhost:3000/posts
responses with status 401:
{
"error": "unauthorized"
}