**簡要描述:**
* 查詢專題詳細信息
**請求URL:**
* /api/v2/topic_content
**請求方式:**
* POST
**header:**
| 參數名 | 必選 | 類型 | 說明 |
| --- | --- | --- | --- |
| Content-Type | 是 | JSON | application/json |
**請求參數:**
| 參數名 | 必選 | 類型 | 說明 |
| --- | --- | --- | --- |
| topic_id | 是 | int | 專題ID|
**請求示例**
1.
~~~
{
"topic_id": "1", //專題ID
}
~~~
**返回結果**
說明請參考視頻列表,與視頻詳情返回結果完全一樣,只是內容上,視頻列表的視頻詳情介紹不存在而已(量大的數據不會在列表結構中返回)
**專題詳情數據**
~~~
{
"status":200,
"msg":"ok",
"result":{
"topic_id":1,
"topic_name":"mingcheng",
"topic_pic":"upload\\/topic\\/20210104-1\\/b290b4c9defc7f668c0c75a1d026ea55.png",
"topic_level":0,
"topic_rel_vod":"12,11,10,1,2",//視頻ID
"topic_rel_art":"12,11,10,1,2",//文章D
"topic_content":"介紹",
"topic_blurb":"簡介"
}
}
~~~