-
Notifications
You must be signed in to change notification settings - Fork 1
[Exploration] 다른글 둘러보기 (인기 최신)
Jihyun247 edited this page Jan 13, 2021
·
10 revisions
GET /exploration/?page&category&sorting
name | type | description | required |
---|---|---|---|
token | String | 토큰 | O |
name | type | description | required |
---|---|---|---|
page | Int | 현 페이지 | o |
category | Int | 카테고리의 Id | x |
sorting | String | 최신 또는 흥미 | o |
sorting은 string으로 최신 또는 흥미
catetgory는 카테고리의 id , 전체일 때는 보내지 않음
name | type | description |
---|---|---|
status | Int | |
success | Boolean | |
message | String | |
data | {user_nickname, page_len, answers} | 사용자 닉네임, 페이지 총 수, answer들 |
name | type | description |
---|---|---|
id | Int | 답변의 id |
comment_blocked_flag | boolean | 답변의 질문의 id |
content | String | 답변 내용 |
public_flag | boolean | 공개 여부 |
answer_date | string | 답변 날짜 |
answer_idx | Int | 답변 인덱스 |
question_id | Int | 질문 id |
user_id | Int | 사용자 id |
is_author | boolean | 자신이 쓴 글인지 |
is_scrapped | boolean | 스크랩한 글인지 |
user_profile | string | 사용자 프로필 사진 |
user_nickname | string | 사용자 이름(닉네임) |
question | string | 질문 제목 |
category | string | 카테고리 이름 |
category_id | Int | 카테고리 id |
is_answered | boolean | 답변된 글인지 |
"status": 200,
"success": true,
"message": "다른 글 둘러보기 성공",
"data": {
"user_nickname": "wlgus",
"page_len": 4,
"answers": [
{
"id": 114,
"comment_blocked_flag": true,
"content": "모두 착하고 귀여워요",
"public_flag": true,
"answer_date": "1월 11일",
"answer_idx": 8,
"question_id": 1,
"user_id": 3,
"is_author": false,
"is_scrapped": false,
"user_profile": "https://2020-sopt-27.s3.ap-northeast-2.amazonaws.com/images/origin/1610099463878.jpeg",
"user_nickname": "iOS",
"question": "내가 좋아하는 사람들은 어떤 공통점이 있나요? 생각, 말투, 행동 등을 생각해봐요!",
"category": "관계",
"category_id": 2,
"is_answered": false
},
{
"id": 8,
"comment_blocked_flag": true,
"content": "아무 생각도 들지 않아요!",
"public_flag": true,
"answer_date": "1월 9일",
"answer_idx": 4,
"question_id": 5,
"user_id": 1,
"is_author": false,
"is_scrapped": false,
"user_profile": "https://2020-sopt-27.s3.ap-northeast-2.amazonaws.com/images/origin/1610466822323.jpg",
"user_nickname": "jujube0",
"question": "요즘 나를 웃게 만든 사람은 누구인가요?",
"category": "관계",
"category_id": 2,
"is_answered": false
}, .....
{
"status": 200,
"success": true,
"message": "아직 답한 질문이 없습니다"
}
{
"status": 200,
"success": true,
"message": "탐색 결과가 없습니다"
}