API Development with Swagger
Table of Contents
2. JSON
fetch = require('node-fetch')
fetch('https://api.github.com/repos/zweifisch/ob-coffee/languages')
.then(res => res.json())
3. Database
select id, username from users;
4. Login and Users
POST http://localhost:8080/login
Accept: application/json
Content-Type: application/json
{
"username": "test@jwalsh.net",
"password": "password"
}