-
Notifications
You must be signed in to change notification settings - Fork 0
내가 구매한 모든게시글 조회(페이징)
지훈 edited this page Dec 16, 2021
·
1 revision
query parameter for paging
- page (1부터 시작)
- size (default 20)
- sort (default: createdDate,DESC)
cf. 가능한 sort param
- 시간 최신 순 : createdDate,DESC (default)
- 좋아요 순 : likeCount,DESC
- 가격 높은 순 : price,DESC
- 가격 낮은 순 : price,ASC
- 조회수 순 : viewCount,DESC
예시)
- 시간 최신 순 : ?page=1&size=20&sort=createdDate,DESC
- 좋아요 순 : ?page=1&size=20&sort=likeCount,DESC
- 가격 높은 순 : ?page=1&size=20&sort=price,DESC
- 가격 낮은 순 : ?page=1&size=20&sort=price,ASC
- 조회수 순 : ?page=1&size=20&sort=viewCount,DESC
- page를 위한 parameter를 명시하지 않을 경우 :
?size=20&sort=createdDate,DESC&page=1
- Content-Type: application/json
- token
no need
- Content-Type: application/json
return Articles
statusCode | message |
---|---|
200 | "Success" |
404 | "접근 권한이 없습니다." |
400 | "Request 인자 값의 타입이 올바르지 않습니다." |
500 | "서버에서 내부적으로 에러가 발생했습니다." |