Import Postman json file
Create Accounts : POST /auth/register/
{
"fullName": "user",
"email": "[email protected]",
"password": "qwerty"
}
Login : POST /auth/login/
{
"email": "[email protected]",
"password": "qwerty"
}
Create New Post : POST /post/new
{
"post": "Post text"
}
Get List All Posts : GET /posts