Skip to content

Commit

Permalink
카테고리 리스트 API의 잘못된 응답 아이템 설명, 응답값 예시 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
NeuroWhAI committed Dec 14, 2018
1 parent 355b6a9 commit 15aa0ad
Showing 1 changed file with 19 additions and 21 deletions.
40 changes: 19 additions & 21 deletions apis/v1/category/list.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ GET https://www.tistory.com/apis/category/list?

- id: 카테고리 ID
- name: 카테고리 이름
- parent: 부모 카테고리 이름
- label: 부모 카테고리를 포함한 전체 이름
- parent: 부모 카테고리 ID
- label: 부모 카테고리를 포함한 전체 이름 ('/'로 구분)
- entries: 카테고리내 글 수

## 응답값 예
Expand All @@ -30,25 +30,23 @@ GET https://www.tistory.com/apis/category/list?
"item":{
"url":"oauth",
"secondaryUrl":"",
"categories":{
"category": [
{
"id":"403929",
"name":"OAuth2.0 Athentication",
"parent":"",
"label":"OAuth2.0 Athentication",
"entries":"0"
},
{
"id":"403930",
"name":"Blog API Series",
"parent":"",
"label":"Blog API Series",
"entries":"0"
},
...
]
}
"categories":[
{
"id":"403929",
"name":"OAuth2.0 Athentication",
"parent":"",
"label":"OAuth2.0 Athentication",
"entries":"0"
},
{
"id":"403930",
"name":"Blog API Series",
"parent":"",
"label":"Blog API Series",
"entries":"0"
},
...
]
}
}
}
Expand Down

0 comments on commit 15aa0ad

Please sign in to comment.