POST http://localhost:5000/api/tokens
Parameters:
Basic-auth login & password
DELETE http://localhost:5000/api/tokens
Parameters:
Basic-auth login & password
GET http://localhost:5000/api/users
Token required
GET http://localhost:5000/api/users/1
Token required
GET http://localhost:5000/api/users/1/followers
Token required
GET http://localhost:5000/api/users/1/followed
Token required
POST http://localhost:5000/api/users
Token not required
Parameters:
{
"username": "blah",
"password": "blah",
"email": "[email protected]",
"about_me": "cool guy"
}
PUT http://localhost:5000/api/users/1
Token required
Parameters:
{
"username": "blah",
"password": "blah",
"email": "[email protected]",
"about_me": "cool guy"
}