Skip to content

Byunjihun/26.2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

API 요청 방식

  1. 로그인 요청 Method: POST URL: http://<고정IP>/member/login

Body:

{

"studentId": "your-student-id",

"memberPassword": "your-password"

}

로그인 시 JWT 토큰이 생성되고, 이후 요청 시 이 토큰을 사용하여 인증해야함.

  1. 전체 게시물 조회 Method: GET URL: http://<고정IP>/board

  2. 단일 게시물 조회 Method: GET URL: http://<고정IP>/board/{게시물 번호}

  3. 게시물 생성 Method: POST URL: http://<고정IP>/board

Body:

{

"title": "게시물 제목",

"content": "게시물 내용"

}

  1. 게시물 수정 Method: PUT URL: http://<고정IP>/board/{게시물 번호}

Body:

{

"title": "수정된 제목",

"content": "수정된 내용"

}

  1. 게시물 삭제 Method: DELETE URL: http://<고정IP>/board/{게시물 번호}

  2. MemberSubject 조회 Method: GET URL: http://<고정IP>/member/subjects

  3. MemberSkills 조회 Method: GET URL: http://<고정IP>/member/skills

  4. MemberDetails 조회 Method: GET URL: http://<고정IP>/member/details

  5. Member Score 업데이트 Method: PUT + 파라미터 넣어줘야함.

URL: http://<고정IP>/member/graduation-score/update/{score-type}

Params: newScore: 새로운 점수 scoreName: 점수 이름

예시: PUT http://<고정IP>/member/graduation-score/update/counseling-score?newScore=50&scoreName=Example Score Name

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages