POST
/user/login
요청 값
{ "email": "string", "password": "string" } ex) { "email": "member@email.com", "password": "need1234" }
응답 값(200)
{ "message": "success", "data": { "grantType": "Bearer", "accessToken": "{발급된 토큰}" } }
스웨거에서 헤더에 토큰 설정 방법


Curl ⇒ 프론트 쪽에서 헤더에 등록할 때 아래와 같이
curl -X GET "http://localhost:8080/donations/1" -H "accept: */*" -H "Authorization: Bearer 발급된 토큰" (Bearer 다음 한 칸 뛰어야함)