public ResponseEntity<String> signup(String name, String nickname, String id, String pwd, String email, boolean gender, String birth, ) {
return new ResponseEntity<>("Hello World!", HttpStatus.OK);
}
application/json{
"isSuccess":true,
"code":1000,
"message":"요청에 성공하였습니다.",
"result":{}
}
{
"isSuccess":false,
"code":2001,
"message":"유효하지 않은 요청입니다.",
"result":null
}
Authorization: Bearer {Access_Token}
Content-Type: application/json
ex ) 200 (OK), 400 (Bad Request)