-
Notifications
You must be signed in to change notification settings - Fork 1
[Profile] 타인이 쓴 글 가져오기
Jihyun247 edited this page Jan 11, 2021
·
7 revisions
GET /profiles/answers/:user_id
name | type | description | required |
---|---|---|---|
token | String | 토큰 | O |
name | type | description | required |
---|---|---|---|
user_id | Int | 타인의 user id | O |
name | type | description | required |
---|---|---|---|
page | Int | 원하는 페이지 (default - 1) | X |
/profiles/answers/:user_id?page=2
name | type | description |
---|---|---|
status | Int | |
success | Boolean | |
message | String | |
data | Data |
name | type | description |
---|---|---|
page_len | Int | 페이지 총 수 |
answers | Array | 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_scrapped | Boolean | 유저가 스크랩한 게시글이면 true 아니면 false |
user_profile | String | 글을 작성한 유저의 프로필 이미지, 없으면 null |
user_nickname | String | 글을 작성한 유저의 닉네임 |
question | String | 글 질문 |
category | String | 글 카테고리 |
caregory_id | Int | 글 카테고리 id |
is_answered | Boolean | 유저가 이미 대답한 질문이면 true 아니면 false |
{
"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
},
{
"id": 10,
"comment_blocked_flag": false,
"content": "aa",
"public_flag": true,
"answer_date": "1월 4일",
"answer_idx": 3,
"question_id": 9,
"user_id": 1,
"is_author": false,
"is_scrapped": false,
"user_profile": null,
"user_nickname": "wlgus3",
"question": "올해 1월과 가장 달라진 점은 무엇인가요?",
"category": "이야기",
"category_id": 3,
"is_answered": false
},
{
"id": 16,
"comment_blocked_flag": false,
"content": "aa",
"public_flag": true,
"answer_date": "1월 4일",
"answer_idx": 3,
"question_id": 7,
"user_id": 1,
"is_author": false,
"is_scrapped": false,
"user_profile": null,
"user_nickname": "wlgus3",
"question": "올해 가장 행운이라 생각하는 일은 무엇인가요? 그 이유는요?",
"category": "일상",
"category_id": 1,
"is_answered": false
},
{
"id": 2,
"comment_blocked_flag": false,
"content": "dd",
"public_flag": true,
"answer_date": "1월 4일",
"answer_idx": 2,
"question_id": 2,
"user_id": 1,
"is_author": false,
"is_scrapped": false,
"user_profile": null,
"user_nickname": "wlgus3",
"question": "요즘 나를 웃게 만든 사람은 누구인가요?",
"category": "가치관",
"category_id": 2,
"is_answered": false
},
{
"id": 15,
"comment_blocked_flag": false,
"content": "aa",
"public_flag": true,
"answer_date": "1월 1일",
"answer_idx": 2,
"question_id": 6,
"user_id": 1,
"is_author": false,
"is_scrapped": false,
"user_profile": null,
"user_nickname": "wlgus3",
"question": "최근에 가장 나를 당황하게 만든 사건은 무엇인가요?",
"category": "이야기",
"category_id": 3,
"is_answered": false
}
]
}
}