A Developing Developer

A-1조_I-ONE_프로젝트S.A(진행중) 본문

내일배움캠프 4기/프로젝트

A-1조_I-ONE_프로젝트S.A(진행중)

H-JJOO 2022. 12. 2. 14:02

1. 프로젝트 제목 : I-ONE

 

1-1. 프로젝트 간단 설명 : 일상공유 플랫폼

 

1-2 팀원별 담당 :

이름 담당
주현진 로그인
유진우 회원가입
장승윤 게시판
김형섭 게시판
고예진 마이페이지

 

2. 와이어 프레임

main.html
login.html
signup.html
mypage.html
write.html
detail.html
edit.html

3. API (진행중)

기능 Method URL Request Response
로그인 GET /api/users/login - {
    uid: uid
    upw: upw
}
회원가입 POST /api/users/signup {
    uid: uid
    upw: upw,
    nm: nm,
    gender : gender
    email: email,
    location: location
}
{
    msg : '완료'
}
회원정보 불러오기 GET /api/mypage/<userId> - {

}
프로필 불러오기 GET /api/<userId> - {
    profileimg: profileimg,
    name: name,
    introduce: introduce,
    blogtitle: blogtitle
}
프로필 수정 POST /api/mypage/write/<userId> {
    profileimg: profileimg,
    name: name,
    introduce: introduce,
    blogtitle: blogtitle,
    email: email
}
{
    msg: '완료'
}
회원정보 삭제 DELETE /api/mypage/edit/<userId> {
    userId: userId
}
{
    msg: '완료'
}
게시글 저장하기 POST /api/boards/write/<userId> {
    iboard: iboard,
    title: title
    content : content
}
{
    msg: '완료'
}
게시글 불러오기 GET /api/boards/<userId> - {
    iboard: iboard,
    title: title
    content : content
}
게시글 수정하기 PUT /api/boards/edit?iboard=<iboard> {
    iboard: iboard,
    title: title
    content : content
}
{
    msg: '완료'
}
게시글 삭제하기 DELETE /api/boards/delete?iboard=<iboard> {
    iboard: iboard
}
{
    msg: '완료'
}