系列课学习页
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>系列课学习页接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>study/series_course_study_list</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>参数</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">type</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>1=课表,2=课程</td>
</tr>
<tr>
<td style="text-align: left;">id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>系列课id</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> {
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;ok&quot;,
&quot;data&quot;: {
&quot;course_info&quot;: { //课程信息
&quot;id&quot;: 212,
&quot;user_id&quot;: 1,
&quot;title&quot;: &quot;测试发布系列课&quot;,
&quot;type&quot;: 3,
&quot;thumb_image&quot;: &quot;https://wxt-1304049341.cos.ap-nanjing.myqcloud.com/course_cover_image.jpg&quot;,
&quot;total_section&quot;: 12 //总讲数
&quot;finish_section&quot;: 4 //已学完讲数
},
&quot;list&quot;: [ //课表信息,参考此前的学习页
{
&quot;id&quot;: 115,
&quot;title&quot;: &quot;仓鸮一家的故事&quot;,
&quot;type&quot;: 2, //课程类型,1=直播,2=录播
&quot;is_fake&quot;: 0,
&quot;section_list&quot;: [
{ //录播课章节列表
&quot;id&quot;: 207,
&quot;title&quot;: &quot;仓鸮妈妈:辛勤带娃中&quot;,
&quot;pdf_data&quot;: [],
&quot;section_sort&quot;: 1,
&quot;status&quot;: 3,
&quot;duration&quot;: 130,
&quot;see_num&quot;: 34,
&quot;course_info&quot;: &quot;共2分钟 · 34次播放 · 已学完&quot;,
&quot;plan&quot;: &quot;1.00000&quot;,
&quot;course_id&quot;: &quot;212&quot;
}
]
&quot;study_status&quot;: 1 // 是否在有效期内,1=是,0=否
},
{ //直播课章节列表
&quot;id&quot;: 399,
&quot;title&quot;: &quot;第二讲&quot;,
&quot;section_sort&quot;: 2,
&quot;status&quot;: 0, //状态:0=未开播,1=已播,2=直播中
&quot;duration&quot;: 0,
&quot;see_num&quot;: 1, //观看人数
&quot;start_time&quot;: 1678842000, //直播课开始时间
&quot;end_time&quot;: 1678849200, //直播课结束时间
&quot;is_video_status&quot;: 0, // 视频状态是否成功,1=是,0=否
&quot;is_playback&quot;: 1,
&quot;view_start_time&quot;: 0,
&quot;view_end_time&quot;: 0
&quot;ahead_data&quot;: [
{
&quot;id&quot;: 23,
&quot;name&quot;: &quot;测试文档.docx&quot;,
&quot;url&quot;: &quot;https://testview.bioquan.com/handouts_file/2024101716645951.docx&quot;
}
],
&quot;pdf_data&quot;: [
{
&quot;id&quot;: 24,
&quot;name&quot;: &quot;测试文档.docx&quot;,
&quot;url&quot;: &quot;https://testview.bioquan.com/handouts_file/2024101716645951.docx&quot;
}
],
&quot;consolidate_data&quot;: [
{
&quot;id&quot;: 25,
&quot;name&quot;: &quot;测试文档.docx&quot;,
&quot;url&quot;: &quot;https://testview.bioquan.com/handouts_file/2024101716645951.docx&quot;
}
],
},
]
&quot;list&quot;: [ //所有课程
{
&quot;id&quot;: 115,
&quot;title&quot;: &quot;仓鸮一家的故事&quot;,
&quot;type&quot;: 2,
&quot;thumb_image&quot;: &quot;&quot;,
&quot;buy_valid_date&quot;: 1,
&quot;total_section&quot;: 3,
&quot;is_fake&quot;: 0,
&quot;sign_time&quot;: &quot;永久有效&quot;,
&quot;study&quot;: 1, // 已学讲数
&quot;plan&quot;: &quot;66.67%&quot; //学习进度(只有录播课才会返回)
&quot;live_status&quot;: 0 //1=正在直播,0=否(只有直播课才会返回)
&quot;start_time&quot;: 1669371769, //直播开始时间(只有直播课并且live_status=1时才会返回)
&quot;end_time&quot;: 1661222730 //直播结束时间(只有直播课并且live_status=1时才会返回)
}
]
}
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>