-
Notifications
You must be signed in to change notification settings - Fork 0
✔글감 검색
Jeong-Hyowon edited this page Jun 18, 2021
·
6 revisions
| 메소드 | 경로 | 설명 |
|---|---|---|
| GET | /main/searchTopic?topic=#{topic} | 글감 검색 |
{
"Content-Type": "application/json",
"token" : "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJTQU5HTEUiLCJ1c2VySWR4IjoyLCJleHAiOjE2MDQxMjgyMzJ9.ZIyE8yKyMZyxdE1QBMPYGlllPvWjVyWNosX-r4H7iDo"
}{
"topic": "부"
}- 데이터 있을 때
[
{
"postIdx": 21,
"profileImg": "https://outsopt26.s3.ap-northeast-2.amazonaws.com/profile7.png",
"nickName": "s",
"topic": "부모님",
"postWrite": "우리 부모님은",
"date": "2020.10.25",
"time": "AM 07:33",
"day": "일",
"liked": true,
"likes": 3,
"isBan": false
}
]- postIdx : 게시글 인덱스
- nickName : 사용자 닉네임
- profileImg : 사용자 프로필 이미지
- topic : 글감
- postWrite : 글 내용
- date : 작성날짜
- time : 작성시간
- day : 작성요일
- liked : 이미 좋아요 눌렀으면 true, 안 눌렀으면 false
- likes : 좋아요 개수
- isBan : 신고당함 숨김여부
- 데이터가 없을 때
- 토큰값이 없을 때 (400)
{
"data": null
}- 권한 에러 (401)
{
"data": null
}- 데이터베이스 에러 (600)
{
"data": null
}- 서버 내부 에러 (500)
{
"data": null
}- 메소드 에러 (405)
- 경로 에러 (404 or 400)