인터페이스 4일차 (postman)
auth POST POST api/auth/ http://localhost:4040/api/auth/ { "email": "jiraynor", "password": "qwer1234!!" } Example Request success curl --location --request POST 'localhost:4040/api/auth/' \ --header 'Content-Type: application/json' \ --data-raw '{ "email": "jiraynor@gmail.com", "password": "qwer1234!!" }' Example Response { "status": true, "message": "login success", "data": { "token": "eyJhbGc..
2023.01.06