✔️ 포스트 관련 - SOPT-COLLABO/26th-TodayHouse-Seminar GitHub Wiki

[GET] ~/post/story

Request - Header

메소드 파라미터
Content-Type application/json

Response - Body

  • success
{
    "status": 200,
    "success": true,
    "message": "메인화면 스토리 리스트 불러오기 성공",
    "data": [
        {
            "imgUrl": "http://tineye.com/images/widgets/mona1.jpg",
            "name": "seoYng",
            "postIdx": 0,
            "content": "나의 집은 참 편하다. 얼마나 편하냐면 ...."
        },
        {
            "imgUrl": "http://tineye.com/images/widgets/mona1.jpg",
            "name": "dobleB",
            "postIdx": 1,
            "content": "자연속 나의 집. 자연 속에 살아가는 것이란 ...."
        },
    ]
}
  • fail
{
    "status": 400,
    "success": false,
    "message": "오류 메세지",
}

[GET] ~/post/popular

Request - Header

메소드 파라미터
Content-Type application/json

Response - Body

  • success
{
    "status": 200,
    "success": true,
    "message": "인기사진 리스트 불러오기 성공",
    "data": [
        {
            "imgUrl": "http://tineye.com/images/widgets/mona1.jpg",
        },
        {
            "imgUrl": "http://tineye.com/images/widgets/mona2.jpg",
        },
    ]
}
  • fail
{
    "status": 400,
    "success": false,
    "message": "오류 메세지",
}

[GET] ~/post

Request - Header

메소드 파라미터
Content-Type application/json

Response - Body

  • success
{
    "status": 200,
    "success": true,
    "message": "가구 포스트 불러오기 성공",
    "data": [{
            "postIndex": 0,
            "name": "seoYng",
            "profileImgUrl": "http://tineye.com/images/widgets/mona1.jpg",
            "location": "나의 다락방",
            "content": "나의 집은 참 편하다. 얼마나 편하냐면 ....",
            "postImgs": [
                {
                    "imgUrl": "http://tineye.com/images/widgets/mona1.jpg"
                },
                {
                    "imgUrl": "http://tineye.com/images/widgets/mona1.jpg"
                }
            ],
            "details": [{
                    "imgUrl": "http://tineye.com/images/widgets/mona1.jpg",
                    "company": "BB company",
                    "price": "56000",
                    "content": "산 속 의자"
                },
                {
                    "imgUrl": "http://tineye.com/images/widgets/mona1.jpg",
                    "company": "SOPT company",
                    "price": "99000",
                    "content": "Virtual Desk"
                }
            ]
        },
        {
            "postIndex": 1,
            "name": "dobleB",
            "profileImgUrl": "http://tineye.com/images/widgets/mona1.jpg",
            "location": "북한산",
            "content": "자연속 나의 집. 자연 속에 살아가는 것이란 ....",
            "postImgs": [
                {
                    "imgUrl": "http://tineye.com/images/widgets/mona1.jpg"
                },
                {
                    "imgUrl": "http://tineye.com/images/widgets/mona1.jpg"
                }
            ],
            "details": [{
                    "imgUrl": "http://tineye.com/images/widgets/mona1.jpg",
                    "company": "BB company",
                    "price": "56000",
                    "content": "산 속 의자"
                },
                {
                    "imgUrl": "http://tineye.com/images/widgets/mona1.jpg",
                    "company": "SOPT company",
                    "price": "99000",
                    "content": "Virtual Desk"
                }
            ]
        },
    ]
}
  • fail
{
    "status": 400,
    "success": false,
    "message": "오류 메세지",
}