Skip to content

[Profile] 마이페이지 스크랩 가져오기

jujube0 edited this page Jan 8, 2021 · 4 revisions

마이페이지 스크랩 가져오기

    GET /profiles/scraps

Request Header

name type description required
token String 토큰 O

Request Query

name type description required
public String 공개 여부: 'public'-공개 / 'unpublic'-비공개 / 'all'- 모두 (default) X
category Int 유저가 선택한 category_id/ null 이면 모두 가져오기 (default) X
query String 검색 쿼리: null(default)일 경우 모든 글 가져오기 X
page Int 페이지 수 : default-1 X

Sample

/profiles/scraps?public=public&category=2&query=당황

Response

name type description
status Int
success Boolean
message String
data Data

Data

name type description
page_len Int 페이지 총 수
answers Array Answer, 답변

Answer

name type description
id Int 답변의 id
comment_blocked_flag Boolean 답글 허용 여부 (댓글을 막았으면 true)
content String 답변 내용
public_flag Boolean 답변 공개 여부 (공개했으면 true)
answer_date String 답변 작성 날짜
answer_idx Int 카테고리에 대한 몇번째 질문인지
question_id Int 답변과 연관된 질문의 id
user_id Int 답변을 기록한 user의 id
is_author Boolean 유저가 작성한 게시글이면 true
is_answered Boolean 유저가 이미 대답한 질문이면 true 아니면 false
is_scrapped Boolean 유저가 스크랩한 게시글이면 true 아니면 false
user_profile String 글을 작성한 유저의 프로필 이미지, 없으면 null
user_nickname String 글을 작성한 유저의 닉네임
question String 글 질문
category String 글 카테고리
caregory_id Int 글 카테고리 id

Sample

{
    "status": 200,
    "success": true,
    "message": "내가 스크랩한 글 가져오기 성공",
    "data": {
        "page_len": 1,
        "answers": [
            {
                "id": 4,
                "comment_blocked_flag": false,
                "content": "aa",
                "public_flag": true,
                "answer_date": "1월 4일",
                "answer_idx": 1,
                "question_id": 3,
                "user_id": 1,
                "is_author": false,
                "is_scrapped": true,
                "user_profile": null,
                "user_nickname": "wlgus3",
                "question": "두려움을 극복해본 경험이 있나요? 어떤 상황이었나요?",
                "category": "이야기",
                "category_id": 3,
                "is_answered": false
            },
            {
                "id": 5,
                "comment_blocked_flag": false,
                "content": "aa",
                "public_flag": true,
                "answer_date": "1월 4일",
                "answer_idx": 3,
                "question_id": 4,
                "user_id": 1,
                "is_author": false,
                "is_scrapped": true,
                "user_profile": null,
                "user_nickname": "wlgus3",
                "question": "나를 주제로 한 영화를 만든다면, 어떤 노래를 주제곡으로 하고 싶나요?",
                "category": "이야기",
                "category_id": 3,
                "is_answered": false
            }
        ]
    }
}
Clone this wiki locally