-
Notifications
You must be signed in to change notification settings - Fork 0
테마 검색
Haely edited this page Nov 12, 2020
·
7 revisions
[GET] ~/search/theme?words={words}
메소드 | 파라미터 | 설명 |
---|---|---|
Content-Type | application/json | |
token | {token} | 토큰 |
토큰 있을 때(회원용), 토큰이 'guest'일 때(비회원용)
변수 | 타입 | 설명 |
---|---|---|
words | String | 검색할 테마의 단어 |
변수명 | 설명 |
---|---|
themeIdx | 테마 고유 idx |
theme | 테마 이름 |
themeImg | 테마 배경 url |
themeImgIdx | 테마 배경 idx |
saves | 테마 북마크 수 |
sentenceNum | 테마 안에 속한 문장 개수 |
{
"status": 200,
"success": true,
"message": "테마 검색 성공",
"data": [
{
"themeIdx": 2,
"theme": "새벽엔 새벽 감성, 밤엔 밤 감성?",
"themeImg": "https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTGPhdhnv3GqN3SX0hPwWlgXnoSitAkbQZtnQ&usqp=CAU",
"themeImgIdx": 7,
"saves": 100,
"sentenceNum": 3
},
{
"themeIdx": 3,
"theme": "온 세상에 나만 깨어있는 것 같은 새벽감성에 읽기 좋은 문장",
"themeImg": "https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTGPhdhnv3GqN3SX0hPwWlgXnoSitAkbQZtnQ&usqp=CAU",
"themeImgIdx": 4,
"saves": 90,
"sentenceNum": 2
}
]
}
{
"status": 400,
"success": false,
"message": "입력한 검색어가 없습니다."
}
{
"status": 400,
"success": false,
"message": "해당하는 테마가 없습니다."
}
{
"status": 400,
"success": false,
"message": "토큰이 없습니다"
}
{
"status": 401,
"success": false,
"message": "유효하지 않은 토큰입니다"
}
{
"status": 401,
"success": false,
"message": "만료된 토큰입니다"
}
{
"status": 600,
"success": false,
"message": "서버 내부 오류"
}
-
메인(Main)
-
검색(Search)
-
작성(Post)
-
큐레이터(Curator)
-
조회(Detail)
-
내 서재(My)
-
유저(Users)