{"info":{"_postman_id":"bbc708ea-1968-41b9-8f63-100eafcf31c2","name":"有课\bAPI文档","description":"<html><head></head><body><h1 id=\"566a5lul\">简介</h1>\n<p>有课开放API暂时只开放控制台能力，如有更多需求，请联系我们。申请API调用权限，请联系 4009-618-610</p>\n<h1 id=\"5zcn6kn6kej6yek\">名词解释</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>词</th>\n<th>意</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>有课</td>\n<td>有课平台</td>\n</tr>\n<tr>\n<td>用户</td>\n<td>有课系统中登录控制台，管理培训的角色</td>\n</tr>\n<tr>\n<td>观众</td>\n<td>培训的受众</td>\n</tr>\n<tr>\n<td>培训</td>\n<td>一次培训的直播间</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"5o6l5ywl5roo5osp5lql6ag5\">接入注意事项</h1>\n<ul>\n<li>所有请求中都 <strong>必须 包含 <code>access_key</code>,<code>timestamp</code>,<code>sign</code>三个参数</strong>，签名生成算法请见下文</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>参</th>\n<th>意</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>access_key</td>\n<td>请求凭证</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>10位时间戳(秒)，请求有效期为服务器时间</td>\n</tr>\n<tr>\n<td>sign</td>\n<td>请求签名</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li><p>下文中所有大写单词，均指代请求时的实际值</p>\n</li>\n<li><p><code>ACCESS_KEY</code> 均代表<code>access_key</code>的值</p>\n</li>\n<li><p><code>SECRET_KEY</code> 均代表<code>secret_key</code>的值</p>\n</li>\n<li><p><code>TIMESTAMP</code>均代表<code>timestamp</code>的值</p>\n</li>\n<li><p><code>SIGN</code>均代表<code>sign</code>的值</p>\n</li>\n<li><p>请使用 <code>https</code> 协议</p>\n</li>\n</ul>\n<h1 id=\"6k35rgc56s65l6l\">请求示例</h1>\n<blockquote>\n<p>下面将用 <a href=\"https://postman.mudu.tv/#dca1962b-9421-40d7-9da1-ac195714b9d3\">控制台-培训-详情</a> 接口做简单示例，该接口需要<code>POST</code>请求，且只有一个<code>id</code>参数</p>\n</blockquote>\n<ol>\n<li>获取请求地址 <code>https://youke.mudu.tv/console/Index.php?c=live&amp;a=Info</code></li>\n<li>在请求<code>BODY</code> 中加入<code>id</code>参数</li>\n<li>在请求URL中加入参数 <code>access_key</code>,<code>timestamp</code>,<code>sign</code>，新的请求URL为：  <code>https://youke.mudu.tv/console/index.php?c=live&amp;a=info&amp;timestamp=TIMESTAMP&amp;access_key=ACCESS_KEY&amp;sign=SIGN</code></li>\n<li>发送<code>POST</code>请求</li>\n<li>返回值为json对象，<code>code</code> 为返回状态码，2XX 为成功。<code>msg</code> 为返回信息，<code>data</code> 为返回数据，无数据返回时，会返回<code>null</code></li>\n</ol>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"code\": 200,\n    \"msg\": \"success\",\n    \"data\": {\n        \"id\": \"0Nmj3O5QyhqyBqPCO8O7O8glEz7CEsmz\",\n        \"account_id\": 6,\n        \"name\": \"测试培训\",\n        \"status\": 1,\n        \"live_status\": 4,\n        \"link_status\": 0,\n        \"link_apply_status\": 0,\n        \"stream\": \"UIJT8T\",\n        \"stream_status\": 0,\n        \"client_id\": 1484962,\n        \"cover\": \"\",\n        \"background\": null,\n        \"created_at\": \"2018-05-10 17:13:38\",\n        \"updated_at\": \"2018-05-11 09:52:52\",\n        \"deleted_at\": null,\n        \"will_start\": \"2018-05-10 17:13:00\",\n        \"will_stop\": \"2018-05-11 09:52:47\",\n        \"last_start\": \"2018-05-11 09:52:20\",\n        \"last_stop\": \"2018-05-11 09:52:52\",\n        \"comment_enable\": 1,\n        \"media_id\": 0,\n        \"watch_amount\": 0,\n        \"white_list_num\": 2514,\n        \"attend_num\": 1,\n        \"manager_id\": null,\n        \"watch_mode\": 1,\n        \"department_id\": null,\n        \"issue_enable\": 0,\n        \"ecdn_enable\": 0,\n        \"type\": 1,\n        \"interactive_room_id\": \"\",\n        \"mrtc_addr\": \"\",\n        \"doc_event_id\": null\n    }\n}\n</code></pre>\n<p>#请求签名算法\n请求签名算法将以  <a href=\"https://postman.mudu.tv/#dca1962b-9421-40d7-9da1-ac195714b9d3\">控制台-培训-详情</a> 为示例说明。示例涉及代码，均以PHP实现，仅供参考。</p>\n<ol>\n<li>将所有PSOT和<code>access_key</code>,<code>timestamp</code>,<code>secret_key</code>合并到一维数组中,并将所有value转换为string类型</li>\n</ol>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">array (size=7)\n  'access_key' =&gt; string 'ACCESS_KEY' (length=10)\n  'secret_key' =&gt; string 'SECRET_KEY' (length=10)\n  'timestamp' =&gt; string '1528786704' (length=10)\n  'id' =&gt; string '0Nmj3O5QyhqyBqPCO8O7O8glEz7CEsmz' (length=32)\n</code></pre>\n<ol>\n<li>将该数组根据KEY按照字典顺序排序</li>\n</ol>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">array (size=7)\n  'access_key' =&gt; string 'ACCESS_KEY' (length=10)\n  'id' =&gt; string '0Nmj3O5QyhqyBqPCO8O7O8glEz7CEsmz' (length=32)\n  'secret_key' =&gt; string 'SECRET_KEY' (length=10)\n  'timestamp' =&gt; string '1528786704' (length=10)\n</code></pre>\n<ol>\n<li>将该数组转换为字符串，注意 <strong>不要</strong> 将中文编码为UNICODE</li>\n</ol>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"access_key\": \"ACCESS_KEY\",\n    \"id\": \"0Nmj3O5QyhqyBqPCO8O7O8glEz7CEsmz\",\n    \"secret_key\": \"SECRET_KEY\",\n    \"timestamp\": \"1528786704\"\n}\n</code></pre>\n<ol>\n<li>sha1 算出签名</li>\n</ol>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>77e0461cf5af753a615aec855c3191f04dc7e415 \n</code></pre><h1 id=\"5ywz5lqo6zsz6kv56cb55qe6k05pio\">关于错误码的说明</h1>\n<p>目前全局错误码仅有下方所示几种，其余错误请结合错误信息判断。如有疑问，请联系我们。</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>code</th>\n<th>msg</th>\n<th>说明</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>490</td>\n<td>Frequency limited.</td>\n<td>请求频率限制，具体限制请参见频率限制一节</td>\n</tr>\n<tr>\n<td>491</td>\n<td>Sign error.</td>\n<td>签名错误</td>\n</tr>\n<tr>\n<td>492</td>\n<td>empty param or timestamp error</td>\n<td>必传参数错误或传入时间戳和系统时间差距大于300s</td>\n</tr>\n<tr>\n<td>500</td>\n<td>unknown error</td>\n<td>未知错误</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"6akr546h6zmq5yi2\">频率限制</h1>\n<p>单帐号 100次/分钟</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"简介","slug":"566a5lul"},{"content":"名词解释","slug":"5zcn6kn6kej6yek"},{"content":"接入注意事项","slug":"5o6l5ywl5roo5osp5lql6ag5"},{"content":"请求示例","slug":"6k35rgc56s65l6l"},{"content":"关于错误码的说明","slug":"5ywz5lqo6zsz6kv56cb55qe6k05pio"},{"content":"频率限制","slug":"6akr546h6zmq5yi2"}],"owner":"2911003","collectionId":"bbc708ea-1968-41b9-8f63-100eafcf31c2","publishedId":"RWEdtLNs","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2020-08-10T09:39:58.000Z"},"item":[{"name":"控制台-回看","item":[{"name":"控制台-回看-开启/关闭回看","id":"55ac24bb-52bc-403c-8d5f-e75e9b86bf3e","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":"AXsmzD0Zn1Nq7DFIOIldrv62uSN1xTLe","description":"<p>频道ID</p>\n","type":"text"},{"key":"live_status","value":"1","description":"<p>频道状态：0=关闭回看；2=开启回看</p>\n","type":"text"}]},"url":"{{URL}}/console/Index.php?c=live&a=updateLiveStatus","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"updateLiveStatus"}],"variable":[]}},"response":[{"id":"6e84c169-312e-4f6b-a7c3-a4de681e76ab","name":"mock","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":"BoLdyF0jA5p1zrBPaezIqNRTtH7PdnII","description":"频道ID","type":"text"},{"key":"live_status","value":"2","description":"频道状态：0=关闭回看；2=开启回看","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=live&a=updateLiveStatusOrMedia","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"updateLiveStatusOrMedia"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":"The type of encoding used on the data."},{"name":"Content-Type","key":"Content-Type","value":"text/html;charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Wed, 19 Jul 2017 05:25:32 GMT","description":"The date and time that the message was sent"},{"name":"Keep-Alive","key":"Keep-Alive","value":"timeout=15","description":"Custom header"},{"name":"Server","key":"Server","value":"nginx/1.12.0","description":"A name for the server"},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".mudu.tv","path":"/","secure":false,"session":false,"value":"15d4036c8452d-082152732e802c-8383667-100200-15d4036c84635","key":"UM_distinctid"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".mudu.tv","path":"/","secure":false,"session":false,"value":".mudu.tv","key":"__root_domain_v"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".mudu.tv","path":"/","secure":false,"session":false,"value":"QD.f91q53.3ewktk.j53lqrkf","key":"_qddaz"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".mudu.tv","path":"/","secure":false,"session":false,"value":"GA1.2.579440319.1500021091","key":"_ga"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"xiake.mudu.tv","path":"/","secure":false,"session":false,"value":"true","key":"never_show_live_help"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".mudu.tv","path":"/","secure":false,"session":false,"value":"1500020919,1500262638","key":"Hm_lvt_22db863c7d7b02b102cf93831ce76aa6"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"xiake.mudu.tv","path":"/","secure":false,"session":true,"value":"8dgroiguoumnbj98hfnqarulj7","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".xiake.mudu.tv","path":"/","secure":false,"session":false,"value":"1500017932,1500262582,1500288061,1500434353","key":"Hm_lvt_05f4960e2ae97d3522555e947098edd0"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".xiake.mudu.tv","path":"/","secure":false,"session":true,"value":"1500435411","key":"Hm_lpvt_05f4960e2ae97d3522555e947098edd0"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"xiake.mudu.tv","path":"/","secure":false,"session":false,"value":"true","key":"have_used_live_control"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"xiake.mudu.tv","path":"/","secure":false,"session":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IjJiOUtscldObWJnTFB4YVJoSFZSTWo4TWFOTHI5ZXdxIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IjJiOUtscldObWJnTFB4YVJoSFZSTWo4TWFOTHI5ZXdxIiwiaWF0IjoxNTAwNDQxOTE5LCJleHAiOjE1MDA0NTYzMTksImlkIjoiYzdtbDl3MUlEWkNwb3k4TUlSbDVJM0psd29ZSU5CblkiLCJhY2NvdW50X2lkIjo2MiwibmFtZSI6ImxlaWNoZW55YW4iLCJyb2xlIjoidXNlciIsInNlc3Npb24iOiJGOUNWTXFnU3pkMlZnZ0FQQ0VMc1locEE0WHp5UnNBaCJ9.l3rWsdcRDg75mUG-yaEEUnUI9Yg_OrnWD_qKavOSd7bgf23c4DjHVJWFlpc00yHtezUTh6Fr-eHVGuQpIilxsQ","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":null}"}],"_postman_id":"55ac24bb-52bc-403c-8d5f-e75e9b86bf3e"},{"name":"控制台-回看-设置/修改回看视频","id":"312f55a5-860d-4fc3-8a8d-3139dc60d65e","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"media_id","value":"690","description":"<p>要设置成回看的视频ID</p>\n","type":"text"},{"key":"id","value":"BoLdyF0jA5p1zrBPaezIqNRTtH7PdnII","description":"<p>频道ID </p>\n","type":"text"}]},"url":"{{URL}}/console/Index.php?c=live&a=setReplyMedia","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"setReplyMedia"}],"variable":[]}},"response":[{"id":"43bb3eca-2d13-47f3-aa65-5f29a6207102","name":"mock_set_video","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"media_id","value":"691","description":"要设置成回看的视频ID","type":"text"},{"key":"id","value":"BoLdyF0jA5p1zrBPaezIqNRTtH7PdnII","description":"频道ID ","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=live&a=updateLiveStatusOrMedia","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"updateLiveStatusOrMedia"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":"The type of encoding used on the data."},{"name":"Content-Type","key":"Content-Type","value":"text/html;charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Wed, 19 Jul 2017 05:35:23 GMT","description":"The date and time that the message was sent"},{"name":"Keep-Alive","key":"Keep-Alive","value":"timeout=15","description":"Custom header"},{"name":"Server","key":"Server","value":"nginx/1.12.0","description":"A name for the server"},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".mudu.tv","path":"/","secure":false,"session":false,"value":"15d4036c8452d-082152732e802c-8383667-100200-15d4036c84635","key":"UM_distinctid"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".mudu.tv","path":"/","secure":false,"session":false,"value":".mudu.tv","key":"__root_domain_v"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".mudu.tv","path":"/","secure":false,"session":false,"value":"QD.f91q53.3ewktk.j53lqrkf","key":"_qddaz"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".mudu.tv","path":"/","secure":false,"session":false,"value":"GA1.2.579440319.1500021091","key":"_ga"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"xiake.mudu.tv","path":"/","secure":false,"session":false,"value":"true","key":"never_show_live_help"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".mudu.tv","path":"/","secure":false,"session":false,"value":"1500020919,1500262638","key":"Hm_lvt_22db863c7d7b02b102cf93831ce76aa6"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"xiake.mudu.tv","path":"/","secure":false,"session":true,"value":"8dgroiguoumnbj98hfnqarulj7","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".xiake.mudu.tv","path":"/","secure":false,"session":false,"value":"1500017932,1500262582,1500288061,1500434353","key":"Hm_lvt_05f4960e2ae97d3522555e947098edd0"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".xiake.mudu.tv","path":"/","secure":false,"session":true,"value":"1500435411","key":"Hm_lpvt_05f4960e2ae97d3522555e947098edd0"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"xiake.mudu.tv","path":"/","secure":false,"session":false,"value":"true","key":"have_used_live_control"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"xiake.mudu.tv","path":"/","secure":false,"session":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IjJiOUtscldObWJnTFB4YVJoSFZSTWo4TWFOTHI5ZXdxIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IjJiOUtscldObWJnTFB4YVJoSFZSTWo4TWFOTHI5ZXdxIiwiaWF0IjoxNTAwNDQxOTE5LCJleHAiOjE1MDA0NTYzMTksImlkIjoiYzdtbDl3MUlEWkNwb3k4TUlSbDVJM0psd29ZSU5CblkiLCJhY2NvdW50X2lkIjo2MiwibmFtZSI6ImxlaWNoZW55YW4iLCJyb2xlIjoidXNlciIsInNlc3Npb24iOiJGOUNWTXFnU3pkMlZnZ0FQQ0VMc1locEE0WHp5UnNBaCJ9.l3rWsdcRDg75mUG-yaEEUnUI9Yg_OrnWD_qKavOSd7bgf23c4DjHVJWFlpc00yHtezUTh6Fr-eHVGuQpIilxsQ","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":null}"}],"_postman_id":"312f55a5-860d-4fc3-8a8d-3139dc60d65e"}],"id":"8f67103a-2de9-4a4a-8846-8d46b0032156","_postman_id":"8f67103a-2de9-4a4a-8846-8d46b0032156","description":""},{"name":"控制台-培训","item":[{"name":"控制台-培训-创建","id":"8534fa64-4d1f-497f-9914-d9be1065b5f4","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"直播方式","type":"text","description":"<p>培训名称</p>\n"},{"key":"type","value":"1","description":"<p>培训类型 1:普通培训 2:互动培训</p>\n","type":"text"},{"key":"will_start","value":"2018-05-28 10:04","type":"text","description":"<p>预计开始时间 date time</p>\n"},{"key":"will_stop","value":"2018-05-28 11:04","type":"text","description":"<p>预计结束时间</p>\n"},{"key":"cover","value":"","type":"text","description":"<p>封面 URL</p>\n"},{"key":"watch_mode","value":"1","type":"text","description":"<p>观看方式 1:指定人员 2:公开观看</p>\n"},{"key":"live_method","value":"1","type":"text","description":"<p>直播方式  1:摄像头  2:\b有课助手  3:推流助手</p>\n","disabled":true}]},"url":"{{URL}}/console/index.php?c=live&a=Create","urlObject":{"path":["console","index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"Create"}],"variable":[]}},"response":[{"id":"a58d218f-778d-48b2-af67-773929709a99","name":"控制台-培训-创建","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"直播方式","type":"text","description":"培训名称"},{"key":"type","value":"1","description":"培训类型 1:普通培训 2:互动培训","type":"text"},{"key":"will_start","value":"2018-05-28 10:04","type":"text","description":"预计开始时间 date time"},{"key":"will_stop","value":"2018-05-28 11:04","type":"text","description":"预计结束时间"},{"key":"cover","value":"","type":"text","description":"封面 URL"},{"key":"watch_mode","value":"1","type":"text","description":"观看方式 1:指定人员 2:公开观看"},{"key":"live_method","value":"1","type":"text","description":"直播方式  1:摄像头  2:\b有课助手  3:推流助手","disabled":true}]},"url":{"raw":"{{URL}}/console/index.php?c=live&a=Create","host":["{{URL}}"],"path":["console","index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"Create"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 07:19:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.3.33","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIiwiaWF0IjoxNTI4OTQ4NTI2LCJleHAiOjE1MjkwMzQ5MjYsImlkIjoiNE9vNTNBdXphVW9mMmZjSGVsTlZhcE13YTQ0bUp6a2UiLCJhY2NvdW50X2lkIjo2LCJuYW1lIjoiaHl3Iiwicm9sZSI6InVzZXIiLCJmcm9tIjoib3JpZ2luIiwic2Vzc2lvbiI6IjR1MmxXTHY3dGpVOWFBeUtyUkxRVlpKcnBxcW5KTldoIn0.7NQ08Kq5L1KcHupl6H_NYofWL0HlQdqPO1FHYEZr0J1jVQd_U7ZK7whwu3rap4C4rfcf4hwzyF3eib8VubSE2Q","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"id\":\"0V9Kxdv0k5d52Zx5RTyE5LIWkExHeI29\",\"account_id\":6,\"name\":\"\\u76f4\\u64ad\\u65b9\\u5f0f\",\"will_start\":\"2018-05-28 10:04:00\",\"will_stop\":\"2018-05-28 11:04:00\",\"live_status\":2,\"stream\":\"DSECSL\",\"cover\":\"\",\"manager_id\":null,\"watch_mode\":\"1\",\"type\":\"1\",\"interactive_room_id\":\"d5z1g40n\",\"mrtc_addr\":\"mrtc:\\/\\/hw-mrtc.myun.tv\\/24433147\\/0\",\"updated_at\":\"2018-06-14 15:19:44\",\"created_at\":\"2018-06-14 15:19:44\"}}"}],"_postman_id":"8534fa64-4d1f-497f-9914-d9be1065b5f4"},{"name":"控制台-培训-更新","id":"ea169add-bb11-4930-ba64-0c8ebc35d4d2","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"<p>培训ID</p>\n"},{"key":"name","value":"测试更改培训名称","type":"text","description":"<p>培训名称</p>\n"},{"key":"will_start","value":"2017-06-27 18:59:49","type":"text","description":"<p>预计开始时间</p>\n"},{"key":"will_stop","value":"2017-06-16 18:59:49","type":"text","description":"<p>预计结束时间</p>\n"},{"key":"watch_mode","value":"2","type":"text","description":"<p>观看模式 1:指定人员 2:公开观看</p>\n"}]},"url":"{{URL}}/console/index.php?c=live&a=Update","urlObject":{"path":["console","index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"Update"}],"variable":[]}},"response":[{"id":"69f6f16a-b859-491e-995c-4bcb91fa4508","name":"控制台-培训-更新","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"培训ID"},{"key":"name","value":"测试更改培训名称","type":"text","description":"培训名称"},{"key":"will_start","value":"2017-06-27 18:59:49","type":"text","description":"预计开始时间"},{"key":"will_stop","value":"2017-06-16 18:59:49","type":"text","description":"预计结束时间"},{"key":"watch_mode","value":"2","type":"text","description":"观看模式 1:指定人员 2:公开观看"}]},"url":{"raw":"{{URL}}/console/index.php?c=live&a=Update","host":["{{URL}}"],"path":["console","index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"Update"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 06:24:36 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.3.33","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIiwiaWF0IjoxNTI4OTQ4NTI2LCJleHAiOjE1MjkwMzQ5MjYsImlkIjoiNE9vNTNBdXphVW9mMmZjSGVsTlZhcE13YTQ0bUp6a2UiLCJhY2NvdW50X2lkIjo2LCJuYW1lIjoiaHl3Iiwicm9sZSI6InVzZXIiLCJmcm9tIjoib3JpZ2luIiwic2Vzc2lvbiI6IjR1MmxXTHY3dGpVOWFBeUtyUkxRVlpKcnBxcW5KTldoIn0.7NQ08Kq5L1KcHupl6H_NYofWL0HlQdqPO1FHYEZr0J1jVQd_U7ZK7whwu3rap4C4rfcf4hwzyF3eib8VubSE2Q","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"id\":\"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du\",\"account_id\":6,\"name\":\"\\u6d4b\\u8bd5\\u66f4\\u6539\\u57f9\\u8bad\\u540d\\u79f0\",\"status\":1,\"live_status\":4,\"link_status\":0,\"link_apply_status\":1,\"stream\":\"KQNUJ2\",\"stream_status\":1,\"client_id\":914,\"cover\":null,\"background\":null,\"created_at\":\"2017-07-24 15:54:31\",\"updated_at\":\"2018-06-14 14:24:36\",\"deleted_at\":null,\"will_start\":\"2017-06-27 18:59:49\",\"will_stop\":\"2017-06-16 18:59:49\",\"last_start\":\"2018-06-14 14:07:40\",\"last_stop\":\"2018-06-14 14:07:44\",\"comment_enable\":1,\"media_id\":1469,\"watch_amount\":1,\"white_list_num\":3,\"attend_num\":2,\"creator_id\":null,\"creator_type\":null,\"creator_name\":null,\"watch_mode\":\"2\",\"live_method\":0,\"department_id\":1334505,\"issue_enable\":0,\"ecdn_enable\":0,\"type\":1,\"interactive_room_id\":\"\",\"mrtc_addr\":\"\"}}"}],"_postman_id":"ea169add-bb11-4930-ba64-0c8ebc35d4d2"},{"name":"控制台-培训-删除","id":"d6825431-41c6-4b67-90a9-5d10c25c5345","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"Z38nFfNklsZ02LRkRktVTMtvgBLKxUSg","type":"text","description":"<p>\b培训 ID</p>\n"}]},"url":"{{URL}}/console/Index.php?c=live&a=Delete","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"Delete"}],"variable":[]}},"response":[{"id":"194ba5c2-c43a-4266-bf4f-6343d4e013b5","name":"控制台-培训-删除","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"Z38nFfNklsZ02LRkRktVTMtvgBLKxUSg","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=live&a=Delete","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"Delete"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 05:39:15 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.3.33","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIiwiaWF0IjoxNTI4OTQ4NTI2LCJleHAiOjE1MjkwMzQ5MjYsImlkIjoiNE9vNTNBdXphVW9mMmZjSGVsTlZhcE13YTQ0bUp6a2UiLCJhY2NvdW50X2lkIjo2LCJuYW1lIjoiaHl3Iiwicm9sZSI6InVzZXIiLCJmcm9tIjoib3JpZ2luIiwic2Vzc2lvbiI6IjR1MmxXTHY3dGpVOWFBeUtyUkxRVlpKcnBxcW5KTldoIn0.7NQ08Kq5L1KcHupl6H_NYofWL0HlQdqPO1FHYEZr0J1jVQd_U7ZK7whwu3rap4C4rfcf4hwzyF3eib8VubSE2Q","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":null}"}],"_postman_id":"d6825431-41c6-4b67-90a9-5d10c25c5345"},{"name":"控制台-培训-列表","id":"def995c9-9e38-45be-a73d-2034a291ff7b","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"page","value":"1","type":"text","description":"<p>\b请求页数</p>\n"},{"key":"live_status","value":"4","type":"text","description":"<p>频道状态 1:直播中 2:为开始 3:点播中 4:已结束</p>\n"},{"key":"live_name","value":"","description":"<p> 直播间名称 [支持模糊搜索]</p>\n","type":"text"},{"key":"category_id","value":"-1","description":"<p>\b\b直播间分类[-1 全部分类 0 默认分类]</p>\n","type":"text"}]},"url":"{{URL}}/console/Index.php?c=live&a=List","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"List"}],"variable":[]}},"response":[{"id":"bc88a51f-cfbe-4307-85bf-72bacb70a9a6","name":"控制台-培训-列表","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"page","value":"1","type":"text","description":"\b请求页数"},{"key":"live_status","value":"4","type":"text","description":"频道状态 1:直播中 2:为开始 3:点播中 4:已结束"},{"key":"","value":"","description":" ","type":"text","disabled":true}]},"url":{"raw":"{{URL}}/console/Index.php?c=live&a=List","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"List"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 05:37:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.3.33","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIiwiaWF0IjoxNTI4OTQ4NTI2LCJleHAiOjE1MjkwMzQ5MjYsImlkIjoiNE9vNTNBdXphVW9mMmZjSGVsTlZhcE13YTQ0bUp6a2UiLCJhY2NvdW50X2lkIjo2LCJuYW1lIjoiaHl3Iiwicm9sZSI6InVzZXIiLCJmcm9tIjoib3JpZ2luIiwic2Vzc2lvbiI6IjR1MmxXTHY3dGpVOWFBeUtyUkxRVlpKcnBxcW5KTldoIn0.7NQ08Kq5L1KcHupl6H_NYofWL0HlQdqPO1FHYEZr0J1jVQd_U7ZK7whwu3rap4C4rfcf4hwzyF3eib8VubSE2Q","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"count\":3,\"page\":1,\"lives\":[{\"id\":\"qg5gjpLTlV1Q442HdF1TVk80QRxFMknX\",\"account_id\":6,\"name\":\"\\u5bfc\\u51fa\\u6d4b\\u8bd5\",\"status\":1,\"live_status\":4,\"link_status\":0,\"link_apply_status\":0,\"stream\":\"TVGZ9W\",\"stream_status\":0,\"client_id\":1491607,\"cover\":\"\",\"background\":null,\"created_at\":\"2018-05-11 09:44:18\",\"updated_at\":\"2018-05-11 10:44:12\",\"deleted_at\":null,\"will_start\":\"2018-05-11 09:44:00\",\"will_stop\":\"2018-05-11 10:44:03\",\"last_start\":\"2018-05-11 10:22:58\",\"last_stop\":\"2018-05-11 10:44:03\",\"comment_enable\":1,\"media_id\":0,\"watch_amount\":0,\"white_list_num\":2514,\"attend_num\":1,\"creator_id\":null,\"creator_type\":null,\"creator_name\":null,\"watch_mode\":1,\"live_method\":0,\"department_id\":null,\"issue_enable\":0,\"ecdn_enable\":0,\"type\":1,\"interactive_room_id\":\"\",\"mrtc_addr\":\"\",\"manager\":null},{\"id\":\"0Nmj3O5QyhqyBqPCO8O7O8glEz7CEsmz\",\"account_id\":6,\"name\":\"\\u53c2\\u4e0e\\u4eba\\u5458\\u5230\\u5904\\u6027\\u80fd\",\"status\":1,\"live_status\":4,\"link_status\":0,\"link_apply_status\":0,\"stream\":\"UIJT8T\",\"stream_status\":0,\"client_id\":1484962,\"cover\":\"\",\"background\":null,\"created_at\":\"2018-05-10 17:13:38\",\"updated_at\":\"2018-05-11 09:52:52\",\"deleted_at\":null,\"will_start\":\"2018-05-10 17:13:00\",\"will_stop\":\"2018-05-11 09:52:47\",\"last_start\":\"2018-05-11 09:52:20\",\"last_stop\":\"2018-05-11 09:52:52\",\"comment_enable\":1,\"media_id\":0,\"watch_amount\":0,\"white_list_num\":2514,\"attend_num\":1,\"creator_id\":null,\"creator_type\":null,\"creator_name\":null,\"watch_mode\":1,\"live_method\":0,\"department_id\":null,\"issue_enable\":0,\"ecdn_enable\":0,\"type\":1,\"interactive_room_id\":\"\",\"mrtc_addr\":\"\",\"manager\":null},{\"id\":\"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du\",\"account_id\":6,\"name\":\"\\u4e3b\\u529b\\u6d4b\\u8bd5\",\"status\":1,\"live_status\":4,\"link_status\":0,\"link_apply_status\":1,\"stream\":\"KQNUJ2\",\"stream_status\":0,\"client_id\":914,\"cover\":null,\"background\":null,\"created_at\":\"2017-07-24 15:54:31\",\"updated_at\":\"2017-12-07 11:55:10\",\"deleted_at\":null,\"will_start\":\"2017-07-01 15:54:00\",\"will_stop\":\"2017-12-07 11:54:22\",\"last_start\":\"2017-11-13 14:13:06\",\"last_stop\":\"2017-12-07 11:54:22\",\"comment_enable\":1,\"media_id\":1469,\"watch_amount\":1,\"white_list_num\":2,\"attend_num\":14,\"creator_id\":null,\"creator_type\":null,\"creator_name\":null,\"watch_mode\":1,\"live_method\":0,\"department_id\":null,\"issue_enable\":0,\"ecdn_enable\":0,\"type\":1,\"interactive_room_id\":\"\",\"mrtc_addr\":\"\",\"manager\":null}]}}"}],"_postman_id":"def995c9-9e38-45be-a73d-2034a291ff7b"},{"name":"控制台-培训-详情","id":"01572696-a70c-44bb-bae2-af11d70ff9af","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"baw6c4ba1qGCgd6Sx6yh88wPdHL0f7nE","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{URL}}/console/Index.php?c=live&a=Info","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"Info"}],"variable":[]}},"response":[{"id":"60a73130-ee4e-4e91-bbae-2c1758e3802f","name":"控制台-培训-详情","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"bISShg8vg2BQALN0c5KaSai4XMq8iKrg","type":"text","description":"培训 ID"},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{URL}}/console/Index.php?c=live&a=Info","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"Info"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 05:47:11 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.3.33","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIiwiaWF0IjoxNTI4OTQ4NTI2LCJleHAiOjE1MjkwMzQ5MjYsImlkIjoiNE9vNTNBdXphVW9mMmZjSGVsTlZhcE13YTQ0bUp6a2UiLCJhY2NvdW50X2lkIjo2LCJuYW1lIjoiaHl3Iiwicm9sZSI6InVzZXIiLCJmcm9tIjoib3JpZ2luIiwic2Vzc2lvbiI6IjR1MmxXTHY3dGpVOWFBeUtyUkxRVlpKcnBxcW5KTldoIn0.7NQ08Kq5L1KcHupl6H_NYofWL0HlQdqPO1FHYEZr0J1jVQd_U7ZK7whwu3rap4C4rfcf4hwzyF3eib8VubSE2Q","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"id\":\"bISShg8vg2BQALN0c5KaSai4XMq8iKrg\",\"account_id\":6,\"name\":\"1121\",\"status\":1,\"live_status\":2,\"link_status\":0,\"link_apply_status\":0,\"stream\":\"JIVEMJ\",\"stream_status\":0,\"client_id\":0,\"cover\":\"\\/\\/static100.mudu.tv\\/static\\/files\\/img\\/console\\/live-control\\/default_live_logo.png\",\"background\":null,\"created_at\":\"2018-04-11 11:15:19\",\"updated_at\":\"2018-04-16 18:17:20\",\"deleted_at\":null,\"will_start\":\"2018-04-11 11:15:00\",\"will_stop\":\"2018-04-11 12:15:00\",\"last_start\":null,\"last_stop\":null,\"comment_enable\":1,\"media_id\":0,\"watch_amount\":0,\"white_list_num\":7,\"attend_num\":0,\"creator_id\":null,\"creator_type\":null,\"creator_name\":null,\"watch_mode\":1,\"live_method\":0,\"department_id\":1334396,\"issue_enable\":1,\"ecdn_enable\":0,\"type\":1,\"interactive_room_id\":\"\",\"mrtc_addr\":\"\",\"doc_event_id\":null}}"}],"_postman_id":"01572696-a70c-44bb-bae2-af11d70ff9af"},{"name":"控制台-培训-开始","id":"39c483f4-1f54-4c6a-bc98-010535ab42a8","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"<p>培训 ID</p>\n"}]},"url":"{{URL}}/console/Index.php?c=live&a=Start","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"Start"}],"variable":[]}},"response":[{"id":"f7b2dede-5d44-4d14-acda-24a4a2e8d6e3","name":"控制台-培训-开始","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"培训 ID"}]},"url":{"raw":"{{URL}}/console/Index.php?c=live&a=Start","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"Start"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 06:02:48 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.3.33","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIiwiaWF0IjoxNTI4OTQ4NTI2LCJleHAiOjE1MjkwMzQ5MjYsImlkIjoiNE9vNTNBdXphVW9mMmZjSGVsTlZhcE13YTQ0bUp6a2UiLCJhY2NvdW50X2lkIjo2LCJuYW1lIjoiaHl3Iiwicm9sZSI6InVzZXIiLCJmcm9tIjoib3JpZ2luIiwic2Vzc2lvbiI6IjR1MmxXTHY3dGpVOWFBeUtyUkxRVlpKcnBxcW5KTldoIn0.7NQ08Kq5L1KcHupl6H_NYofWL0HlQdqPO1FHYEZr0J1jVQd_U7ZK7whwu3rap4C4rfcf4hwzyF3eib8VubSE2Q","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":null}"}],"_postman_id":"39c483f4-1f54-4c6a-bc98-010535ab42a8"},{"name":"控制台-培训-停止","id":"ffaa44db-2a3f-4409-b4c7-b5e9691d3499","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"<p>培训 ID</p>\n"}]},"url":"{{URL}}/console/Index.php?c=live&a=Stop","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"Stop"}],"variable":[]}},"response":[{"id":"9e870834-f598-4717-a392-6102f58d20c4","name":"控制台-培训-停止","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"培训 ID"}]},"url":{"raw":"{{URL}}/console/Index.php?c=live&a=Stop","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"Stop"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 06:07:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.3.33","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIiwiaWF0IjoxNTI4OTQ4NTI2LCJleHAiOjE1MjkwMzQ5MjYsImlkIjoiNE9vNTNBdXphVW9mMmZjSGVsTlZhcE13YTQ0bUp6a2UiLCJhY2NvdW50X2lkIjo2LCJuYW1lIjoiaHl3Iiwicm9sZSI6InVzZXIiLCJmcm9tIjoib3JpZ2luIiwic2Vzc2lvbiI6IjR1MmxXTHY3dGpVOWFBeUtyUkxRVlpKcnBxcW5KTldoIn0.7NQ08Kq5L1KcHupl6H_NYofWL0HlQdqPO1FHYEZr0J1jVQd_U7ZK7whwu3rap4C4rfcf4hwzyF3eib8VubSE2Q","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\"}"}],"_postman_id":"ffaa44db-2a3f-4409-b4c7-b5e9691d3499"},{"name":"控制台-培训-发消息","id":"f0d108ee-d11c-4f7e-8fa5-d392cb837500","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text"},{"key":"message","value":"测试发送聊天消息","type":"text"}]},"url":"{{URL}}/console/index.php?c=live&a=SetComment","urlObject":{"path":["console","index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"SetComment"}],"variable":[]}},"response":[{"id":"d955e64e-31b0-4bcd-9934-e41365130c4b","name":"控制台-培训-发消息","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text"},{"key":"message","value":"测试发送聊天消息","type":"text"}]},"url":{"raw":"{{URL}}/console/index.php?c=live&a=SetComment","host":["{{URL}}"],"path":["console","index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"SetComment"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 06:08:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.3.33","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIiwiaWF0IjoxNTI4OTQ4NTI2LCJleHAiOjE1MjkwMzQ5MjYsImlkIjoiNE9vNTNBdXphVW9mMmZjSGVsTlZhcE13YTQ0bUp6a2UiLCJhY2NvdW50X2lkIjo2LCJuYW1lIjoiaHl3Iiwicm9sZSI6InVzZXIiLCJmcm9tIjoib3JpZ2luIiwic2Vzc2lvbiI6IjR1MmxXTHY3dGpVOWFBeUtyUkxRVlpKcnBxcW5KTldoIn0.7NQ08Kq5L1KcHupl6H_NYofWL0HlQdqPO1FHYEZr0J1jVQd_U7ZK7whwu3rap4C4rfcf4hwzyF3eib8VubSE2Q","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":null}"}],"_postman_id":"f0d108ee-d11c-4f7e-8fa5-d392cb837500"},{"name":"控制台-培训-获取消息","id":"e1aad8ad-c8c1-442c-8528-6fcefd8c5320","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"page","value":"1","type":"text","description":"<p>页数</p>\n"},{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"<p>培训 ID</p>\n"}]},"url":"{{URL}}/console/index.php?c=live&a=GetComment","urlObject":{"path":["console","index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"GetComment"}],"variable":[]}},"response":[{"id":"6d617387-60a8-43e4-b105-6728238ae25a","name":"控制台-培训-获取消息","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"page","value":"1","type":"text","description":"页数"},{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"培训 ID"}]},"url":{"raw":"{{URL}}/console/index.php?c=live&a=GetComment","host":["{{URL}}"],"path":["console","index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"GetComment"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 06:09:00 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.3.33","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIiwiaWF0IjoxNTI4OTQ4NTI2LCJleHAiOjE1MjkwMzQ5MjYsImlkIjoiNE9vNTNBdXphVW9mMmZjSGVsTlZhcE13YTQ0bUp6a2UiLCJhY2NvdW50X2lkIjo2LCJuYW1lIjoiaHl3Iiwicm9sZSI6InVzZXIiLCJmcm9tIjoib3JpZ2luIiwic2Vzc2lvbiI6IjR1MmxXTHY3dGpVOWFBeUtyUkxRVlpKcnBxcW5KTldoIn0.7NQ08Kq5L1KcHupl6H_NYofWL0HlQdqPO1FHYEZr0J1jVQd_U7ZK7whwu3rap4C4rfcf4hwzyF3eib8VubSE2Q","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"page\":1,\"count\":15,\"comments\":[{\"id\":5980,\"live_id\":\"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du\",\"sender_id\":70718,\"sender_type\":2,\"sender_name\":\"\\u97e9\",\"message\":\"werwer\",\"reply_to\":null,\"checked\":1,\"top\":0,\"created_at\":\"2017-07-29 22:25:25\",\"deleted_at\":null},{\"id\":6742,\"live_id\":\"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du\",\"sender_id\":70718,\"sender_type\":2,\"sender_name\":\"\\u97e9\",\"message\":\"444\",\"reply_to\":null,\"checked\":1,\"top\":0,\"created_at\":\"2017-10-09 13:55:06\",\"deleted_at\":null},{\"id\":6743,\"live_id\":\"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du\",\"sender_id\":70718,\"sender_type\":2,\"sender_name\":\"\\u97e9\",\"message\":\"postman2\",\"reply_to\":null,\"checked\":1,\"top\":0,\"created_at\":\"2017-10-09 13:56:09\",\"deleted_at\":null},{\"id\":6744,\"live_id\":\"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du\",\"sender_id\":70718,\"sender_type\":2,\"sender_name\":\"\\u97e9\",\"message\":\"postman2\",\"reply_to\":null,\"checked\":1,\"top\":0,\"created_at\":\"2017-10-09 14:01:09\",\"deleted_at\":null},{\"id\":6745,\"live_id\":\"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du\",\"sender_id\":70718,\"sender_type\":2,\"sender_name\":\"\\u97e9\",\"message\":\"postman2\",\"reply_to\":null,\"checked\":1,\"top\":0,\"created_at\":\"2017-10-09 14:02:19\",\"deleted_at\":null},{\"id\":6750,\"live_id\":\"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du\",\"sender_id\":70718,\"sender_type\":2,\"sender_name\":\"\\u97e9\",\"message\":\"534534\",\"reply_to\":null,\"checked\":1,\"top\":0,\"created_at\":\"2017-10-09 17:40:17\",\"deleted_at\":null},{\"id\":6751,\"live_id\":\"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du\",\"sender_id\":70718,\"sender_type\":2,\"sender_name\":\"\\u97e9\",\"message\":\"888\",\"reply_to\":null,\"checked\":1,\"top\":0,\"created_at\":\"2017-10-09 17:40:27\",\"deleted_at\":null},{\"id\":7014,\"live_id\":\"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du\",\"sender_id\":70718,\"sender_type\":2,\"sender_name\":\"\\u97e9\",\"message\":\"333\",\"reply_to\":null,\"checked\":1,\"top\":0,\"created_at\":\"2017-11-13 11:54:49\",\"deleted_at\":null},{\"id\":7015,\"live_id\":\"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du\",\"sender_id\":70718,\"sender_type\":2,\"sender_name\":\"\\u97e9\",\"message\":\"444\",\"reply_to\":null,\"checked\":1,\"top\":0,\"created_at\":\"2017-11-13 14:37:53\",\"deleted_at\":null},{\"id\":9650,\"live_id\":\"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du\",\"sender_id\":70718,\"sender_type\":2,\"sender_name\":\"\\u97e9\",\"message\":\"6666666666666666\",\"reply_to\":null,\"checked\":1,\"top\":0,\"created_at\":\"2018-02-09 14:59:42\",\"deleted_at\":null},{\"id\":9651,\"live_id\":\"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du\",\"sender_id\":70718,\"sender_type\":2,\"sender_name\":\"\\u97e9\",\"message\":\"2222222\",\"reply_to\":null,\"checked\":1,\"top\":0,\"created_at\":\"2018-02-09 14:59:49\",\"deleted_at\":null},{\"id\":9652,\"live_id\":\"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du\",\"sender_id\":70718,\"sender_type\":2,\"sender_name\":\"\\u97e9\",\"message\":\"111111111111\",\"reply_to\":null,\"checked\":1,\"top\":0,\"created_at\":\"2018-02-09 14:59:52\",\"deleted_at\":null},{\"id\":9653,\"live_id\":\"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du\",\"sender_id\":70718,\"sender_type\":2,\"sender_name\":\"\\u97e9\",\"message\":\"3333333333333\",\"reply_to\":null,\"checked\":1,\"top\":0,\"created_at\":\"2018-02-09 14:59:55\",\"deleted_at\":null},{\"id\":9654,\"live_id\":\"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du\",\"sender_id\":70718,\"sender_type\":2,\"sender_name\":\"\\u97e9\",\"message\":\"444444444\",\"reply_to\":null,\"checked\":1,\"top\":0,\"created_at\":\"2018-02-09 15:06:33\",\"deleted_at\":null},{\"id\":10517,\"live_id\":\"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du\",\"sender_id\":6,\"sender_type\":1,\"sender_name\":\"hyw\",\"message\":\"\\u6d4b\\u8bd5\\u53d1\\u9001\\u804a\\u5929\\u6d88\\u606f\",\"reply_to\":null,\"checked\":1,\"top\":0,\"created_at\":\"2018-06-14 14:08:42\",\"deleted_at\":null}]}}"}],"_postman_id":"e1aad8ad-c8c1-442c-8528-6fcefd8c5320"},{"name":"控制台-培训-删除消息","id":"b95756c6-6ef1-4208-8bdd-263ca4337147","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"<p>培训 ID</p>\n"},{"key":"comment_id","value":"5980","type":"text","description":"<p>消息 ID</p>\n"}]},"url":"{{URL}}/console/index.php?c=live&a=DeleteComment","urlObject":{"path":["console","index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"DeleteComment"}],"variable":[]}},"response":[{"id":"32c3bbbb-45dd-4675-a3fb-4a06b757309f","name":"控制台-培训-删除消息","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text"},{"key":"comment_id","value":"5980","type":"text"}]},"url":{"raw":"{{URL}}/console/index.php?c=live&a=DeleteComment","host":["{{URL}}"],"path":["console","index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"DeleteComment"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 06:09:49 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.3.33","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIiwiaWF0IjoxNTI4OTQ4NTI2LCJleHAiOjE1MjkwMzQ5MjYsImlkIjoiNE9vNTNBdXphVW9mMmZjSGVsTlZhcE13YTQ0bUp6a2UiLCJhY2NvdW50X2lkIjo2LCJuYW1lIjoiaHl3Iiwicm9sZSI6InVzZXIiLCJmcm9tIjoib3JpZ2luIiwic2Vzc2lvbiI6IjR1MmxXTHY3dGpVOWFBeUtyUkxRVlpKcnBxcW5KTldoIn0.7NQ08Kq5L1KcHupl6H_NYofWL0HlQdqPO1FHYEZr0J1jVQd_U7ZK7whwu3rap4C4rfcf4hwzyF3eib8VubSE2Q","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":null}"}],"_postman_id":"b95756c6-6ef1-4208-8bdd-263ca4337147"},{"name":"控制台-培训-当前在线观众列表","id":"869ffbcf-a557-4039-bc97-e76ee3e0a920","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"<p>培训 ID</p>\n"}]},"url":"{{URL}}/console/index.php?c=live&a=AudienceList","urlObject":{"path":["console","index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"AudienceList"}],"variable":[]}},"response":[{"id":"1e8a6bcb-5f4f-4e96-8dbc-defa74597520","name":"控制台-培训-当前在线观众列表","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text"}]},"url":{"raw":"{{URL}}/console/index.php?c=live&a=AudienceList","host":["{{URL}}"],"path":["console","index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"AudienceList"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 06:14:49 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.3.33","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIiwiaWF0IjoxNTI4OTQ4NTI2LCJleHAiOjE1MjkwMzQ5MjYsImlkIjoiNE9vNTNBdXphVW9mMmZjSGVsTlZhcE13YTQ0bUp6a2UiLCJhY2NvdW50X2lkIjo2LCJuYW1lIjoiaHl3Iiwicm9sZSI6InVzZXIiLCJmcm9tIjoib3JpZ2luIiwic2Vzc2lvbiI6IjR1MmxXTHY3dGpVOWFBeUtyUkxRVlpKcnBxcW5KTldoIn0.7NQ08Kq5L1KcHupl6H_NYofWL0HlQdqPO1FHYEZr0J1jVQd_U7ZK7whwu3rap4C4rfcf4hwzyF3eib8VubSE2Q","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"time\":\"1528956889652\",\"list\":{\"98206\":\"{\\\"name\\\":\\\"\\\\u6d4b\\\\u8bd5\\\\u89c2\\\\u4f17\\\",\\\"device\\\":\\\"2\\\"}\"}}}"}],"_postman_id":"869ffbcf-a557-4039-bc97-e76ee3e0a920"},{"name":"控制台-培训-指定观看列表","id":"4f54e18c-346e-4d25-bb87-1c72cd794339","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"<p>培训 ID</p>\n"}]},"url":"{{URL}}/console/Index.php?c=live&a=WhiteList","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"WhiteList"}],"variable":[]}},"response":[{"id":"b78e7131-d1cb-4e84-a855-2f1825f2baa8","name":"控制台-培训-白名单","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=live&a=WhiteList","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"WhiteList"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 06:18:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.3.33","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIiwiaWF0IjoxNTI4OTQ4NTI2LCJleHAiOjE1MjkwMzQ5MjYsImlkIjoiNE9vNTNBdXphVW9mMmZjSGVsTlZhcE13YTQ0bUp6a2UiLCJhY2NvdW50X2lkIjo2LCJuYW1lIjoiaHl3Iiwicm9sZSI6InVzZXIiLCJmcm9tIjoib3JpZ2luIiwic2Vzc2lvbiI6IjR1MmxXTHY3dGpVOWFBeUtyUkxRVlpKcnBxcW5KTldoIn0.7NQ08Kq5L1KcHupl6H_NYofWL0HlQdqPO1FHYEZr0J1jVQd_U7ZK7whwu3rap4C4rfcf4hwzyF3eib8VubSE2Q","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"audiences\":[{\"id\":83946,\"account_id\":6,\"ding_id\":null,\"ding_user_id\":null,\"ding_union_id\":null,\"job_number\":\"000000\",\"name\":\"\\u76ee\\u7779\\u541b1\",\"name_py\":\"MuDuJun1\",\"name_first\":\"mdj1\",\"position\":\"\\u5409\\u7965\\u7269\",\"avatar\":null,\"mobile\":\"18888888888\",\"tel\":null,\"work_place\":null,\"remark\":null,\"email\":null,\"device\":null,\"ip\":null,\"extattr\":null,\"created_at\":\"2017-09-21 18:39:36\",\"updated_at\":\"2017-09-25 17:42:07\",\"deleted_at\":\"-0001-11-30 00:00:00\"},{\"id\":91831,\"account_id\":6,\"ding_id\":null,\"ding_user_id\":null,\"ding_union_id\":null,\"job_number\":\"\",\"name\":\"ces\",\"name_py\":\"Ces\",\"name_first\":\"c\",\"position\":\"\",\"avatar\":null,\"mobile\":\"13000000000\",\"tel\":null,\"work_place\":null,\"remark\":null,\"email\":null,\"device\":2,\"ip\":\"101.71.249.178\",\"extattr\":null,\"created_at\":\"2017-12-15 16:22:53\",\"updated_at\":\"2017-12-15 16:23:36\",\"deleted_at\":\"-0001-11-30 00:00:00\"}],\"departments\":[]}}"}],"_postman_id":"4f54e18c-346e-4d25-bb87-1c72cd794339"},{"name":"控制台-培训-指定观看范围","id":"915aa988-bdae-4ed8-9d8e-f625201e1cdb","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"<p>培训 ID</p>\n"},{"key":"audiences","value":"[83946,91831]","type":"text","description":"<p>观众 ID  json数组</p>\n"},{"key":"departments","value":"[2955]","type":"text","description":"<p>部门 ID \b\b json数组</p>\n"}]},"url":"{{URL}}/console/Index.php?c=live&a=accredit","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"accredit"}],"variable":[]}},"response":[{"id":"77321380-fbbf-4494-a1e6-1b6bd3b57708","name":"控制台-培训-指定观看范围","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"培训 ID"},{"key":"audiences","value":"[83946,91831]","type":"text","description":"观众 ID  json数组"},{"key":"departments","value":"[2955]","type":"text","description":"部门 ID \b\b json数组"}]},"url":{"raw":"{{URL}}/console/Index.php?c=live&a=accredit","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"accredit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 06:28:45 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.3.33","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIiwiaWF0IjoxNTI4OTQ4NTI2LCJleHAiOjE1MjkwMzQ5MjYsImlkIjoiNE9vNTNBdXphVW9mMmZjSGVsTlZhcE13YTQ0bUp6a2UiLCJhY2NvdW50X2lkIjo2LCJuYW1lIjoiaHl3Iiwicm9sZSI6InVzZXIiLCJmcm9tIjoib3JpZ2luIiwic2Vzc2lvbiI6IjR1MmxXTHY3dGpVOWFBeUtyUkxRVlpKcnBxcW5KTldoIn0.7NQ08Kq5L1KcHupl6H_NYofWL0HlQdqPO1FHYEZr0J1jVQd_U7ZK7whwu3rap4C4rfcf4hwzyF3eib8VubSE2Q","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":null}"}],"_postman_id":"915aa988-bdae-4ed8-9d8e-f625201e1cdb"},{"name":"控制台-培训-发送观看通知","id":"7dc479eb-36cb-4529-82d1-aab15f4acd45","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"<p>培训 ID</p>\n"},{"key":"launch_at","value":"2017-05-09 15:22:11","type":"text","description":"<p>通知发送时间</p>\n"}]},"url":"{{URL}}/console/Index.php?c=live&a=notifyWhiteList","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"notifyWhiteList"}],"variable":[]}},"response":[{"id":"a6f248f8-907f-4466-aaff-9fd3aa8d4000","name":"控制台-培训-通知白名单观看","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"培训 ID"},{"key":"launch_at","value":"2017-05-09 15:22:11","type":"text","description":"通知发送时间"}]},"url":{"raw":"{{URL}}/console/Index.php?c=live&a=notifyWhiteList","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"notifyWhiteList"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 06:29:41 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.3.33","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIiwiaWF0IjoxNTI4OTQ4NTI2LCJleHAiOjE1MjkwMzQ5MjYsImlkIjoiNE9vNTNBdXphVW9mMmZjSGVsTlZhcE13YTQ0bUp6a2UiLCJhY2NvdW50X2lkIjo2LCJuYW1lIjoiaHl3Iiwicm9sZSI6InVzZXIiLCJmcm9tIjoib3JpZ2luIiwic2Vzc2lvbiI6IjR1MmxXTHY3dGpVOWFBeUtyUkxRVlpKcnBxcW5KTldoIn0.7NQ08Kq5L1KcHupl6H_NYofWL0HlQdqPO1FHYEZr0J1jVQd_U7ZK7whwu3rap4C4rfcf4hwzyF3eib8VubSE2Q","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":null}"}],"_postman_id":"7dc479eb-36cb-4529-82d1-aab15f4acd45"},{"name":"控制台-培训-获取短网址","id":"201bebb9-8f5c-4d13-89d6-52509d37c435","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"<p>培训 ID</p>\n"}]},"url":"{{URL}}/console/index.php?c=live&a=getLiveShortUrl","urlObject":{"path":["console","index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"getLiveShortUrl"}],"variable":[]}},"response":[{"id":"0e4fb66c-a068-4229-a323-7bcd94ad0909","name":"控制台-培训-获取短网址","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"培训 ID"}]},"url":{"raw":"{{URL}}/console/index.php?c=live&a=getLiveShortUrl","host":["{{URL}}"],"path":["console","index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"getLiveShortUrl"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 07:20:34 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.3.33","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIiwiaWF0IjoxNTI4OTQ4NTI2LCJleHAiOjE1MjkwMzQ5MjYsImlkIjoiNE9vNTNBdXphVW9mMmZjSGVsTlZhcE13YTQ0bUp6a2UiLCJhY2NvdW50X2lkIjo2LCJuYW1lIjoiaHl3Iiwicm9sZSI6InVzZXIiLCJmcm9tIjoib3JpZ2luIiwic2Vzc2lvbiI6IjR1MmxXTHY3dGpVOWFBeUtyUkxRVlpKcnBxcW5KTldoIn0.7NQ08Kq5L1KcHupl6H_NYofWL0HlQdqPO1FHYEZr0J1jVQd_U7ZK7whwu3rap4C4rfcf4hwzyF3eib8VubSE2Q","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"url\":\"http:\\/\\/192.168.3.33:4434\\/r\\/x\"}}"}],"_postman_id":"201bebb9-8f5c-4d13-89d6-52509d37c435"},{"name":"控制台-培训-状态统计","id":"7689c2bb-3055-4440-932a-0c2db6a8193b","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"{{URL}}/console/Index.php?c=live&a=countStatus","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"countStatus"}],"variable":[]}},"response":[{"id":"08c532ce-6f70-433c-b85a-9e8a80835765","name":"控制台-培训-状态统计","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"{{URL}}/console/Index.php?c=live&a=countStatus","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"countStatus"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 07:21:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.3.33","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIiwiaWF0IjoxNTI4OTQ4NTI2LCJleHAiOjE1MjkwMzQ5MjYsImlkIjoiNE9vNTNBdXphVW9mMmZjSGVsTlZhcE13YTQ0bUp6a2UiLCJhY2NvdW50X2lkIjo2LCJuYW1lIjoiaHl3Iiwicm9sZSI6InVzZXIiLCJmcm9tIjoib3JpZ2luIiwic2Vzc2lvbiI6IjR1MmxXTHY3dGpVOWFBeUtyUkxRVlpKcnBxcW5KTldoIn0.7NQ08Kq5L1KcHupl6H_NYofWL0HlQdqPO1FHYEZr0J1jVQd_U7ZK7whwu3rap4C4rfcf4hwzyF3eib8VubSE2Q","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":[{\"live_status\":1,\"count\":1},{\"live_status\":2,\"count\":8},{\"live_status\":4,\"count\":1}]}"}],"_postman_id":"7689c2bb-3055-4440-932a-0c2db6a8193b"},{"name":"控制台-培训-设置观看方式","id":"73de4cc8-40bd-45a7-b354-77fb0387494e","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"watch_mode","value":"2","type":"text","description":"<p>观看模式 1:指定观看 2:公开观看</p>\n"},{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"<p>\b培训 ID</p>\n"}]},"url":"{{URL}}/console/index.php?c=live&a=switchWatchMode","description":"<p>错误码:</p>\n<p>406=参数错误；\n200=success;</p>\n","urlObject":{"path":["console","index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"switchWatchMode"}],"variable":[]}},"response":[{"id":"ef631676-72c2-4401-b588-fe965fad5cb0","name":"控制台-培训-设置观看方式","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"watch_mode","value":"2","type":"text","description":"观看模式 1:指定观看 2:公开观看"},{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"\b培训 ID"}]},"url":{"raw":"{{URL}}/console/index.php?c=live&a=switchWatchMode","host":["{{URL}}"],"path":["console","index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"switchWatchMode"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 07:22:06 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.3.33","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6Im9xOWdXRzhLcExyT3FoWWNDdzJ1OVY0dUJFNTlmN1pSIiwiaWF0IjoxNTI4OTQ4NTI2LCJleHAiOjE1MjkwMzQ5MjYsImlkIjoiNE9vNTNBdXphVW9mMmZjSGVsTlZhcE13YTQ0bUp6a2UiLCJhY2NvdW50X2lkIjo2LCJuYW1lIjoiaHl3Iiwicm9sZSI6InVzZXIiLCJmcm9tIjoib3JpZ2luIiwic2Vzc2lvbiI6IjR1MmxXTHY3dGpVOWFBeUtyUkxRVlpKcnBxcW5KTldoIn0.7NQ08Kq5L1KcHupl6H_NYofWL0HlQdqPO1FHYEZr0J1jVQd_U7ZK7whwu3rap4C4rfcf4hwzyF3eib8VubSE2Q","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":null}"}],"_postman_id":"73de4cc8-40bd-45a7-b354-77fb0387494e"},{"name":"控制台-培训-切换直播方式","id":"cd0493ce-e38c-4058-aec3-4f0412b2d9ac","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"CWPdT2Ew5ArSHsBqPIdq2CUgIJnNS9Du","type":"text","description":"<p>频道 ID</p>\n"},{"key":"live_method","value":"3","type":"text","description":"<p> 直播方式  1:摄像头  2:\b有课助手  3:推流助手</p>\n"}]},"url":"{{URL}}/console/Index.php?c=live&a=liveMethodSwitcher","description":"<p>406=参数错误</p>\n","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"liveMethodSwitcher"}],"variable":[]}},"response":[],"_postman_id":"cd0493ce-e38c-4058-aec3-4f0412b2d9ac"},{"name":"控制台-培训-培训分类\b列表","id":"c097f2f9-c2fc-4a91-847e-9483e20f146f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{URL}}/console/Index.php?c=live&a=categoryList","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"categoryList"}],"variable":[]}},"response":[],"_postman_id":"c097f2f9-c2fc-4a91-847e-9483e20f146f"},{"name":"控制台-培训-修改分类名称","id":"e4a53fe5-de7e-4ce7-ab1b-7b2382be4854","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"category_name","value":"测试分类10","description":"<p>修改分类名称</p>\n","type":"text"},{"key":"category_id","value":"2","description":"<p>分类id</p>\n","type":"text"}]},"url":"{{URL}}/console/Index.php?c=live&a=updateCategory","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"updateCategory"}],"variable":[]}},"response":[{"id":"b0d0ed71-9e6c-4a3c-8bbf-91dfae605612","name":"控制台-培训-修改分类名称","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"category_name","value":"测试分类10","description":"修改分类名称","type":"text"},{"key":"category_id","value":"2","description":"分类id","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=live&a=updateCategory","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"updateCategory"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Tue, 23 Jul 2019 06:34:18 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"id\":2,\"category_name\":\"\\u6d4b\\u8bd5\\u5206\\u7c7b10\",\"set_top_date\":\"2018-10-31 16:51:41\",\"account_id\":322,\"created_at\":\"2018-10-16 10:29:38\",\"updated_at\":\"2019-07-23 14:34:18\"}}"}],"_postman_id":"e4a53fe5-de7e-4ce7-ab1b-7b2382be4854"},{"name":"控制台-培训-添加直播分类","id":"2babb666-0119-4b7d-908b-c4bfd6685f61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"category_name","value":"测试分类-test-1","description":"<p>添加分类名称</p>\n","type":"text"}]},"url":"{{URL}}/console/Index.php?c=live&a=addCategory","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"addCategory"}],"variable":[]}},"response":[{"id":"578a2b77-3ab8-49ba-95c3-3d5ace830aa3","name":"控制台-培训-添加直播分类","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"category_name","value":"测试分类-test-1","description":"添加分类名称","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=live&a=addCategory","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"addCategory"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Tue, 23 Jul 2019 06:36:56 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"category_name\":\"\\u6d4b\\u8bd5\\u5206\\u7c7b-test-1\",\"account_id\":322,\"updated_at\":\"2019-07-23 14:36:56\",\"created_at\":\"2019-07-23 14:36:56\",\"id\":4435}}"},{"id":"cd8113ed-161f-44ad-8213-4f67d9db22a4","name":"控制台-培训-添加直播分类","originalRequest":{"method":"POST","header":[{"key":"Cookie","value":"have_used_live_control=true; PHPSESSID=ahfml94f2p1884kajfs7h93gnk; Hm_lvt_05f4960e2ae97d3522555e947098edd0=1562061638,1562553788; audience_account_uuid=RzQwfjxhimKysJZ7aWrQBRrjZl9uu5NV; user_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IjU3MHY0dHNIYWZJWk5udGdQamYyTkZMOTVETE9udjJOIn0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiNTcwdjR0c0hhZklaTm50Z1BqZjJORkw5NURMT252Mk4iLCJpYXQiOjE1NjM4NjI2MDcsImV4cCI6MTU2Mzk0OTAwNywiaWQiOiJSelF3Zmp4aGltS3lzSlo3YVdyUUJScmpabDl1dTVOViIsImFjY291bnRfaWQiOjMyMiwibmFtZSI6InBlYW51dCIsInJvbGUiOiJ1c2VyIiwiZnJvbSI6Im9yaWdpbiIsImV4dHJhIjpbXSwic2Vzc2lvbiI6InM1UlRoeXZBa0s1eTFqeDQwZklJRkFQVHRvMTY3d1ZJIn0.-9iQbyoCwUohwqbgre3Ds587IBuB4zNTxwCQek8IeE85g7ijnT6BpTRMrqyrAp4DfnylYkdkZ_9zCnGYobYLZQ; Hm_lpvt_05f4960e2ae97d3522555e947098edd0=1563863414","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"category_name","value":"测试分类-test-1","description":"添加分类名称","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=live&a=addCategory","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"addCategory"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Tue, 23 Jul 2019 06:36:56 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"category_name\":\"\\u6d4b\\u8bd5\\u5206\\u7c7b-test-1\",\"account_id\":322,\"updated_at\":\"2019-07-23 14:36:56\",\"created_at\":\"2019-07-23 14:36:56\",\"id\":4435}}"}],"_postman_id":"2babb666-0119-4b7d-908b-c4bfd6685f61"},{"name":"控制台-培训-删除直播分类","id":"1309e8de-dbb5-4860-b241-f79697a6c81a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"category_id","value":"4436","description":"<p>分类id</p>\n","type":"text"}]},"url":"{{URL}}/console/Index.php?c=live&a=delCategory","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"live"},{"key":"a","value":"delCategory"}],"variable":[]}},"response":[{"id":"16391d35-d0e0-411a-843b-ae7b0d4b4c1c","name":"控制台-培训-删除直播分类","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"category_id","value":"4436","description":"分类id","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=live&a=delCategory","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"delCategory"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Tue, 23 Jul 2019 06:45:12 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":null}"},{"id":"4e416530-c2a6-46e0-90c3-b880bd31fd0d","name":"控制台-培训-删除直播分类","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"category_id","value":"4436","description":"分类id","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=live&a=delCategory","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"delCategory"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Tue, 23 Jul 2019 06:45:12 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":null}"},{"id":"d424b89b-9e77-44b5-b5c6-ec2470523352","name":"控制台-培训-删除直播分类","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"category_id","value":"4435","description":"分类id","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=live&a=delCategory","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"delCategory"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Tue, 23 Jul 2019 06:41:46 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":null}"},{"id":"df59a678-dd76-4657-8343-f818bf17f4a1","name":"控制台-培训-删除直播分类","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"category_id","value":"4435","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=live&a=delCategory","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"delCategory"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Tue, 23 Jul 2019 06:41:46 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":null}"},{"id":"e06ae7b9-0e41-4b10-9b8f-e74f612d3d6f","name":"控制台-培训-删除直播分类","originalRequest":{"method":"POST","header":[{"key":"Cookie","value":"have_used_live_control=true; PHPSESSID=ahfml94f2p1884kajfs7h93gnk; Hm_lvt_05f4960e2ae97d3522555e947098edd0=1562061638,1562553788; audience_account_uuid=RzQwfjxhimKysJZ7aWrQBRrjZl9uu5NV; user_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IjU3MHY0dHNIYWZJWk5udGdQamYyTkZMOTVETE9udjJOIn0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiNTcwdjR0c0hhZklaTm50Z1BqZjJORkw5NURMT252Mk4iLCJpYXQiOjE1NjM4NjI2MDcsImV4cCI6MTU2Mzk0OTAwNywiaWQiOiJSelF3Zmp4aGltS3lzSlo3YVdyUUJScmpabDl1dTVOViIsImFjY291bnRfaWQiOjMyMiwibmFtZSI6InBlYW51dCIsInJvbGUiOiJ1c2VyIiwiZnJvbSI6Im9yaWdpbiIsImV4dHJhIjpbXSwic2Vzc2lvbiI6InM1UlRoeXZBa0s1eTFqeDQwZklJRkFQVHRvMTY3d1ZJIn0.-9iQbyoCwUohwqbgre3Ds587IBuB4zNTxwCQek8IeE85g7ijnT6BpTRMrqyrAp4DfnylYkdkZ_9zCnGYobYLZQ; Hm_lpvt_05f4960e2ae97d3522555e947098edd0=1563864087","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"category_id","value":"4436","description":"分类id","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=live&a=delCategory","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"live"},{"key":"a","value":"delCategory"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Tue, 23 Jul 2019 06:45:12 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":null}"}],"_postman_id":"1309e8de-dbb5-4860-b241-f79697a6c81a"}],"id":"6cef9375-f4bb-41c5-967e-5e3477abd421","_postman_id":"6cef9375-f4bb-41c5-967e-5e3477abd421","description":""},{"name":"控制台-观众","item":[{"name":"控制台-观众-创建","id":"78e144e3-4247-441e-bacd-6ce843973129","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"刘德阀","type":"text","description":"<p>观众姓名</p>\n"},{"key":"email","value":"fsdf4ds344333533532534wf@s.com","type":"text","description":"<p>邮箱</p>\n","disabled":true},{"key":"mobile","value":"12013408018","type":"text","description":"<p>手机号码</p>\n"},{"key":"departments","value":"[1334506]","type":"text","description":"<p>部门</p>\n"},{"key":"job_number","value":"","type":"text","disabled":true},{"key":"position","value":"","type":"text","disabled":true},{"key":"password","value":"12013408017","description":"<p>密码</p>\n","type":"text"},{"key":"password_repeat","value":"12013408017","description":"<p>重复密码</p>\n","type":"text"}]},"url":"{{URL}}/console/Index.php?c=audience&a=create","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"audience"},{"key":"a","value":"create"}],"variable":[]}},"response":[{"id":"231dea6f-e61b-46a8-b1c8-29140ff24170","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"刘德阀","type":"text"},{"key":"email","value":"fsdf4ds344333533532534wf@s.com","type":"text","disabled":true},{"key":"mobile","value":"12013408018","type":"text"},{"key":"departments","value":"[1334506]","type":"text"},{"key":"job_number","value":"","type":"text","disabled":true},{"key":"position","value":"","type":"text","disabled":true},{"key":"password","value":"12013408017","type":"text"},{"key":"password_repeat","value":"12013408017","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=audience&a=create","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"audience"},{"key":"a","value":"create"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 06:27:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"account_id\":316,\"name\":\"\\u5218\\u5fb7\\u9600\",\"mobile\":\"12013408018\",\"email\":null,\"position\":\"\",\"job_number\":\"\",\"ding_id\":null,\"ding_user_id\":null,\"ding_union_id\":null,\"name_py\":\"LiuDeFa\",\"name_first\":\"ldf\",\"updated_at\":\"2018-06-14 14:27:56\",\"created_at\":\"2018-06-14 14:27:56\",\"id\":98210,\"departments\":[{\"id\":1334506,\"account_id\":316,\"parent_id\":1334395,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"112\",\"name_py\":\"112\",\"name_first\":\"1\",\"order\":null,\"created_at\":\"2018-06-14 14:20:31\",\"updated_at\":\"2018-06-14 14:20:31\",\"deleted_at\":\"-0001-11-30 00:00:00\"}]}}"},{"id":"cfb8e88a-030d-49cd-acfc-733462aebacc","name":"403","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"刘德阀","type":"text"},{"key":"email","value":"fsdf4ds344333533532534wf@s.com","type":"text","disabled":true},{"key":"mobile","value":"12013408017","type":"text"},{"key":"departments","value":"[1334506]","type":"text"},{"key":"job_number","value":"","type":"text","disabled":true},{"key":"position","value":"","type":"text","disabled":true},{"key":"password","value":"12013408017","type":"text"},{"key":"password_repeat","value":"12013408017","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=audience&a=create","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"audience"},{"key":"a","value":"create"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 06:25:41 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":403,\"msg\":\"member already exist\",\"data\":null}"}],"_postman_id":"78e144e3-4247-441e-bacd-6ce843973129"},{"name":"控制台-观众-删除","id":"61103e6d-3c9e-4777-8cd1-874ea681f58a","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"ids","value":"[98214]","type":"text","description":"<p>待删除人员ID</p>\n"},{"key":"","value":"","type":"text"}]},"url":"{{URL}}/console/Index.php?c=audience&a=delete","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"audience"},{"key":"a","value":"delete"}],"variable":[]}},"response":[{"id":"321c3079-3fca-44ac-a011-f4046a65a1a1","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"ids","value":"[98214]","type":"text","description":"待删除人员ID"},{"key":"","value":"","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=audience&a=delete","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"audience"},{"key":"a","value":"delete"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 07:28:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":null}"}],"_postman_id":"61103e6d-3c9e-4777-8cd1-874ea681f58a"},{"name":"控制台-观众-更新","id":"f9cdf4e9-d73d-4b4f-8044-cbfe841c256e","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"98212","type":"text","description":"<p>待删除人员I]D</p>\n"},{"key":"name","value":"22222","type":"text","description":"<p>待删除人员名称</p>\n"},{"key":"email","value":"d@q.com","type":"text","disabled":true},{"key":"mobile","value":"15958022666","type":"text","description":"<p>待删除人员手机号码</p>\n"},{"key":"departments","value":"[1334395]","type":"text","description":"<p>待删除人员部门]]</p>\n"},{"key":"position","value":"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","type":"text","disabled":true},{"key":"job_number","value":"","type":"text","disabled":true},{"key":"bad_key","value":"234","type":"text","disabled":true}]},"url":"{{URL}}/console/Index.php?c=audience&a=update","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"audience"},{"key":"a","value":"update"}],"variable":[]}},"response":[{"id":"666d10c3-cf85-43b3-bbe6-b5bea1206e5d","name":"控制台-观众-更新","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"8804","type":"text"},{"key":"name","value":"123ddddddddd","type":"text"},{"key":"email","value":"d@q.com","type":"text","disabled":true},{"key":"mobile","value":"12313448917","type":"text"},{"key":"departments","value":"[1]","type":"text"},{"key":"position","value":"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","type":"text","disabled":true},{"key":"job_number","value":"","type":"text","disabled":true},{"key":"bad_key","value":"234","type":"text","disabled":true}]},"url":{"raw":"{{URL}}/console/Index.php?c=audience&a=update","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"audience"},{"key":"a","value":"update"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 03:38:15 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"code\":401,\"msg\":\"please login\",\"data\":null}"},{"id":"f36cc9f3-fee0-4ae8-87b3-35f2f14a896d","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"98212","type":"text","description":"待删除人员I]D"},{"key":"name","value":"22222","type":"text","description":"待删除人员名称"},{"key":"email","value":"d@q.com","type":"text","disabled":true},{"key":"mobile","value":"15958022666","type":"text","description":"待删除人员手机号码"},{"key":"departments","value":"[1334395]","type":"text","description":"待删除人员部门]]"},{"key":"position","value":"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","type":"text","disabled":true},{"key":"job_number","value":"","type":"text","disabled":true},{"key":"bad_key","value":"234","type":"text","disabled":true}]},"url":{"raw":"{{URL}}/console/Index.php?c=audience&a=update","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"audience"},{"key":"a","value":"update"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 08:23:36 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"id\":98212,\"account_id\":316,\"ding_id\":null,\"ding_user_id\":null,\"ding_union_id\":null,\"job_number\":\"\",\"name\":\"22222\",\"name_py\":\"22222\",\"name_first\":\"2\",\"position\":\"\",\"avatar\":null,\"mobile\":\"15958022666\",\"tel\":null,\"work_place\":null,\"remark\":null,\"email\":null,\"device\":null,\"ip\":null,\"extattr\":null,\"created_at\":\"2018-06-14 15:17:17\",\"updated_at\":\"2018-06-14 15:34:56\",\"deleted_at\":\"-0001-11-30 00:00:00\",\"departments\":[{\"id\":1334395,\"account_id\":316,\"parent_id\":-1,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"xuhaidong\",\"name_py\":\"Xuhaidong\",\"name_first\":\"x\",\"order\":null,\"created_at\":\"2018-04-11 14:05:36\",\"updated_at\":\"2018-04-11 14:05:36\",\"deleted_at\":\"-0001-11-30 00:00:00\"}]}}"}],"_postman_id":"f9cdf4e9-d73d-4b4f-8044-cbfe841c256e"},{"name":"控制台-观众-解析Excel","id":"520b1127-542e-4d35-acc5-44da31dcd6a4","request":{"method":"POST","header":[{"key":"Cookie","value":"XDEBUG_PROFILE=XDEBUG_ECLIPSE"}],"body":{"mode":"formdata","formdata":[{"key":"list","type":"file","value":null}]},"url":"{{URL}}/console/Index.php?c=audience&a=parseExcel","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"audience"},{"key":"a","value":"parseExcel"}],"variable":[]}},"response":[{"id":"5da8106e-159e-4172-9f75-b3b27b13a732","name":"200","originalRequest":{"method":"POST","header":[{"key":"Cookie","value":"user_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6ImdhanYyUmh1ZUMxZTJMVGQ4SVRxMThSNHByMDNKUzI2In0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6ImdhanYyUmh1ZUMxZTJMVGQ4SVRxMThSNHByMDNKUzI2IiwiaWF0IjoxNTIwMzQ2NTMxLCJleHAiOjE1MjA0MzI5MzEsImlkIjoiNE9vNTNBdXphVW9mMmZjSGVsTlZhcE13YTQ0bUp6a2UiLCJhY2NvdW50X2lkIjo2LCJuYW1lIjoiaHl3Iiwicm9sZSI6InVzZXIiLCJmcm9tIjoib3JpZ2luIiwic2Vzc2lvbiI6Im41RGdJVmxBaFR4UlQ2NndxNEtCNk55RWVCZUhudFd5In0.P76-kJz5SG8404FkD1vQd62wM4aSyiS4SlCmLKsGOYivJlzDmB8-1GFFgPXv8pXmgWR1SDbbJ50p8-hevq7clQ","disabled":true},{"key":"Cookie","value":"XDEBUG_PROFILE=XDEBUG_ECLIPSE"}],"body":{"mode":"formdata","formdata":[{"key":"list","type":"file","src":null}]},"url":{"raw":"{{URL}}/console/Index.php?c=audience&a=parseExcel","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"audience"},{"key":"a","value":"parseExcel"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 07:38:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Xdebug-Profile-Filename","value":"/var/www/xdebug/cachegrind.out.192","name":"X-Xdebug-Profile-Filename","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"count\":1,\"update\":0,\"insert\":1}}"}],"_postman_id":"520b1127-542e-4d35-acc5-44da31dcd6a4"},{"name":"控制台-观众-详情","id":"a58cabab-0baa-4977-b6ef-6d6f95379c1e","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"4577","type":"text"}]},"url":"{{URL}}/console/Index.php?c=audience&a=info","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"audience"},{"key":"a","value":"info"}],"variable":[]}},"response":[{"id":"2efcefc6-8bd1-40c9-9310-93756a4a1b28","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"98212","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=audience&a=info","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"audience"},{"key":"a","value":"info"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 07:39:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"id\":98212,\"account_id\":316,\"ding_id\":null,\"ding_user_id\":null,\"ding_union_id\":null,\"job_number\":\"\",\"name\":\"22222\",\"name_py\":\"22222\",\"name_first\":\"2\",\"position\":\"\",\"avatar\":null,\"mobile\":\"15958022666\",\"tel\":null,\"work_place\":null,\"remark\":null,\"email\":null,\"device\":null,\"ip\":null,\"extattr\":null,\"created_at\":\"2018-06-14 15:17:17\",\"updated_at\":\"2018-06-14 15:34:56\",\"deleted_at\":\"-0001-11-30 00:00:00\",\"departments\":[{\"id\":1334395,\"account_id\":316,\"parent_id\":-1,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"xuhaidong\",\"name_py\":\"Xuhaidong\",\"name_first\":\"x\",\"order\":null,\"created_at\":\"2018-04-11 14:05:36\",\"updated_at\":\"2018-04-11 14:05:36\",\"deleted_at\":\"-0001-11-30 00:00:00\"}]}}"},{"id":"7d0d0140-f83f-496f-bb6d-627b739552ed","name":"控制台-观众-详情","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"4577","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=audience&a=info","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"audience"},{"key":"a","value":"info"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 03:40:17 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"code\":401,\"msg\":\"please login\",\"data\":null}"}],"_postman_id":"a58cabab-0baa-4977-b6ef-6d6f95379c1e"}],"id":"cfd4ef52-450e-473e-bb74-c459191e5d93","_postman_id":"cfd4ef52-450e-473e-bb74-c459191e5d93","description":""},{"name":"控制台-部门","item":[{"name":"控制台-部门-创建","id":"94b9b976-4259-421f-a5a3-75bc02797d31","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"parent_id","value":"1334395","type":"text","description":"<p>母部门</p>\n"},{"key":"name","value":"2","type":"text","description":"<p>要创建的子部门名称</p>\n"}]},"url":"{{URL}}/console/Index.php?c=department&a=create","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"department"},{"key":"a","value":"create"}],"variable":[]}},"response":[{"id":"44e14b5d-fd2c-4b5e-b4bf-d96227b77cea","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"parent_id","value":"1334395","type":"text","description":"母部门"},{"key":"name","value":"2","type":"text","description":"要创建的子部门名称"}]},"url":{"raw":"{{URL}}/console/Index.php?c=department&a=create","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"department"},{"key":"a","value":"create"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 07:42:38 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"account_id\":316,\"name\":\"2\",\"parent_id\":\"1334395\",\"name_py\":\"2\",\"name_first\":\"2\",\"updated_at\":\"2018-06-14 15:42:38\",\"created_at\":\"2018-06-14 15:42:38\",\"id\":1334512}}"},{"id":"54a52646-3f44-4fa3-8798-96b26fd05f87","name":"406","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"parent_id","value":"1334395","type":"text","description":"母部门"},{"key":"name","value":"1","type":"text","description":"要创建的子部门名称"}]},"url":{"raw":"{{URL}}/console/Index.php?c=department&a=create","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"department"},{"key":"a","value":"create"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 07:42:18 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":406,\"msg\":\"member already exist\",\"data\":null}"}],"_postman_id":"94b9b976-4259-421f-a5a3-75bc02797d31"},{"name":"控制台-部门-删除","id":"c130885c-aaef-4893-b768-fcd3679eb18c","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"ids","value":"[1334510]","type":"text","description":"<p>要删除的部门id</p>\n"}]},"url":"{{URL}}/console/Index.php?c=department&a=Delete","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"department"},{"key":"a","value":"Delete"}],"variable":[]}},"response":[{"id":"171702bc-0b09-4026-a5e1-664d650d7069","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"ids","value":"[1334510]","type":"text","description":"要删除的部门id"}]},"url":{"raw":"{{URL}}/console/Index.php?c=department&a=Delete","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"department"},{"key":"a","value":"Delete"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 07:44:57 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":null}"}],"_postman_id":"c130885c-aaef-4893-b768-fcd3679eb18c"},{"name":"控制台-部门-树","id":"5ae31750-80ca-478e-b936-6450a309cfd1","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"{{URL}}/console/Index.php?c=department&a=tree","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"department"},{"key":"a","value":"tree"}],"variable":[]}},"response":[{"id":"1830d921-0c7f-4c59-ae71-a77ac4bb5541","name":"200","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"{{URL}}/console/Index.php?c=department&a=tree","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"department"},{"key":"a","value":"tree"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 05:33:22 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"id\":1334395,\"parent_id\":-1,\"name\":\"xuhaidong\"}}"}],"_postman_id":"5ae31750-80ca-478e-b936-6450a309cfd1"},{"name":"控制台-部门-观众列表","id":"76734856-48cd-47d5-9759-2f353b84f7d7","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"1334509","type":"text","description":"<p>部门id</p>\n"},{"key":"page","value":"1","type":"text","description":"<p>显示的页数是第几页</p>\n"}]},"url":"{{URL}}/console/Index.php?c=department&a=audiences","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"department"},{"key":"a","value":"audiences"}],"variable":[]}},"response":[{"id":"46974be6-ca1c-43ed-988c-c4893ea1a276","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"1334509","type":"text","description":"部门ID"},{"key":"page","value":"1","type":"text","description":"显示的是第几页"}]},"url":{"raw":"{{URL}}/console/Index.php?c=department&a=audiences","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"department"},{"key":"a","value":"audiences"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 07:47:53 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"count\":1,\"page\":1,\"audiences\":[{\"id\":98216,\"account_id\":316,\"ding_id\":null,\"ding_user_id\":null,\"ding_union_id\":null,\"job_number\":\"000000\",\"name\":\"\\u76ee\\u7779\\u541b\",\"name_py\":\"MuDuJun\",\"name_first\":\"mdj\",\"position\":\"\\u5409\\u7965\\u7269\",\"avatar\":null,\"mobile\":\"18888888888\",\"tel\":null,\"work_place\":null,\"remark\":null,\"email\":\"mudu@mudu.tv\",\"device\":null,\"ip\":null,\"extattr\":null,\"created_at\":\"2018-06-14 15:46:16\",\"updated_at\":\"2018-06-14 15:46:16\",\"deleted_at\":\"-0001-11-30 00:00:00\",\"departments\":[{\"id\":1334509,\"account_id\":316,\"parent_id\":1334395,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"\\u4ea7\\u54c1\\u90e8\",\"name_py\":\"ChanPinBu\",\"name_first\":\"cpb\",\"order\":null,\"created_at\":\"2018-06-14 15:38:11\",\"updated_at\":\"2018-06-14 15:38:11\",\"deleted_at\":\"-0001-11-30 00:00:00\"}]}]}}"}],"_postman_id":"76734856-48cd-47d5-9759-2f353b84f7d7"},{"name":"控制台-部门-线","id":"8937647f-0062-4856-9db5-45960637b58a","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"{{URL}}/console/Index.php?c=department&a=line","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"department"},{"key":"a","value":"line"}],"variable":[]}},"response":[{"id":"f5d13da5-9ccc-422b-9868-efc85a0daf6f","name":"200","originalRequest":{"method":"GET","header":[{"key":"Cookie","value":"user_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6ImdhanYyUmh1ZUMxZTJMVGQ4SVRxMThSNHByMDNKUzI2In0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6ImdhanYyUmh1ZUMxZTJMVGQ4SVRxMThSNHByMDNKUzI2IiwiaWF0IjoxNTIwMzQ2NTMxLCJleHAiOjE1MjA0MzI5MzEsImlkIjoiNE9vNTNBdXphVW9mMmZjSGVsTlZhcE13YTQ0bUp6a2UiLCJhY2NvdW50X2lkIjo2LCJuYW1lIjoiaHl3Iiwicm9sZSI6InVzZXIiLCJmcm9tIjoib3JpZ2luIiwic2Vzc2lvbiI6Im41RGdJVmxBaFR4UlQ2NndxNEtCNk55RWVCZUhudFd5In0.P76-kJz5SG8404FkD1vQd62wM4aSyiS4SlCmLKsGOYivJlzDmB8-1GFFgPXv8pXmgWR1SDbbJ50p8-hevq7clQ","disabled":true},{"key":"Cookie","value":"XDEBUG_PROFILE=XDEBUG_ECLIPSE","disabled":true}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{URL}}/console/Index.php?c=department&a=line","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"department"},{"key":"a","value":"line"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 07:52:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":[{\"id\":1334506,\"parent_id\":1334395,\"name\":\"112\",\"include\":[1334506],\"audiences_count\":1},{\"id\":1334512,\"parent_id\":1334395,\"name\":\"2\",\"include\":[1334512],\"audiences_count\":0},{\"id\":1334509,\"parent_id\":1334395,\"name\":\"\\u4ea7\\u54c1\\u90e8\",\"include\":[1334509],\"audiences_count\":1},{\"id\":1334395,\"parent_id\":-1,\"name\":\"xuhaidong\",\"include\":[1334395,1334506,1334512,1334509],\"audiences_count\":3}]}"}],"_postman_id":"8937647f-0062-4856-9db5-45960637b58a"},{"name":"控制台-部门-子部门详情","id":"28d71249-2a4e-43d1-85d8-2c70dcf35ef0","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"parent_id","value":"1334395","type":"text","description":"<p>母部门id</p>\n"}]},"url":"{{URL}}/console/Index.php?c=department&a=subInfo","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"department"},{"key":"a","value":"subInfo"}],"variable":[]}},"response":[{"id":"84b3efd9-97ea-4887-935c-b920e2e88909","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"parent_id","value":"1334395","type":"text","description":"母部门id"}]},"url":{"raw":"{{URL}}/console/Index.php?c=department&a=subInfo","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"department"},{"key":"a","value":"subInfo"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 07:53:00 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":[{\"id\":1334506,\"account_id\":316,\"parent_id\":1334395,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"112\",\"name_py\":\"112\",\"name_first\":\"1\",\"order\":null,\"created_at\":\"2018-06-14 14:20:31\",\"updated_at\":\"2018-06-14 14:20:31\",\"deleted_at\":\"-0001-11-30 00:00:00\",\"audiences_count\":1,\"has_sub\":0},{\"id\":1334512,\"account_id\":316,\"parent_id\":1334395,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"2\",\"name_py\":\"2\",\"name_first\":\"2\",\"order\":null,\"created_at\":\"2018-06-14 15:42:38\",\"updated_at\":\"2018-06-14 15:42:38\",\"deleted_at\":\"-0001-11-30 00:00:00\",\"audiences_count\":0,\"has_sub\":0},{\"id\":1334509,\"account_id\":316,\"parent_id\":1334395,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"\\u4ea7\\u54c1\\u90e8\",\"name_py\":\"ChanPinBu\",\"name_first\":\"cpb\",\"order\":null,\"created_at\":\"2018-06-14 15:38:11\",\"updated_at\":\"2018-06-14 15:38:11\",\"deleted_at\":\"-0001-11-30 00:00:00\",\"audiences_count\":1,\"has_sub\":0}]}"},{"id":"9cfc27a4-2943-45ac-9842-4b2dd87b7522","name":"控制台-部门-子部门详情","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"parent_id","value":"1","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=department&a=subInfo","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"department"},{"key":"a","value":"subInfo"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 05:34:32 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":[]}"}],"_postman_id":"28d71249-2a4e-43d1-85d8-2c70dcf35ef0"},{"name":"控制台-部门-详情","id":"722813ff-1b64-4542-8dc6-282c5c86f9d5","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"1334395","type":"text"}]},"url":"{{URL}}/console/Index.php?c=department&a=Info","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"department"},{"key":"a","value":"Info"}],"variable":[]}},"response":[{"id":"ae174a84-2d0a-4793-9619-7ffdca481aca","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"1334395","type":"text","description":"部门ID"}]},"url":{"raw":"{{URL}}/console/Index.php?c=department&a=Info","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"department"},{"key":"a","value":"Info"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 07:53:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":[{\"id\":1334395,\"account_id\":316,\"parent_id\":-1,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"xuhaidong\",\"name_py\":\"Xuhaidong\",\"name_first\":\"x\",\"order\":null,\"created_at\":\"2018-04-11 14:05:36\",\"updated_at\":\"2018-04-11 14:05:36\",\"deleted_at\":\"-0001-11-30 00:00:00\",\"audiences_count\":1,\"has_sub\":1}]}"},{"id":"d3b0f79e-c6d1-4344-ab15-c3b23ba5c409","name":"控制台-部门-详情","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"22","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=department&a=Info","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"department"},{"key":"a","value":"Info"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 05:34:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":[{\"id\":1334395,\"account_id\":316,\"parent_id\":-1,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"xuhaidong\",\"name_py\":\"Xuhaidong\",\"name_first\":\"x\",\"order\":null,\"created_at\":\"2018-04-11 14:05:36\",\"updated_at\":\"2018-04-11 14:05:36\",\"deleted_at\":\"-0001-11-30 00:00:00\",\"audiences_count\":3,\"has_sub\":0}]}"}],"_postman_id":"722813ff-1b64-4542-8dc6-282c5c86f9d5"},{"name":"控制台-部门-更新","id":"ac9f3b29-5ed8-495b-9fbe-e38eb25ce4b2","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"1334506","type":"text","description":"<p>要修改名称的部门id</p>\n"},{"key":"parent_id","value":"1334395","type":"text","description":"<p>所在母部门id</p>\n"},{"key":"name","value":"113","type":"text","description":"<p>修改名称</p>\n"}]},"url":"{{URL}}/console/Index.php?c=department&a=update","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"department"},{"key":"a","value":"update"}],"variable":[]}},"response":[{"id":"50cf7ba6-f93b-47b4-aa89-78cfd19d1ba9","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"1334506","type":"text","description":"要修改名称的部门id"},{"key":"parent_id","value":"1334395","type":"text","description":"所在母部门id"},{"key":"name","value":"113","type":"text","description":"修改名称"}]},"url":{"raw":"{{URL}}/console/Index.php?c=department&a=update","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"department"},{"key":"a","value":"update"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 07:55:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"id\":1334506,\"account_id\":316,\"parent_id\":1334395,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"113\",\"name_py\":\"113\",\"name_first\":\"1\",\"order\":null,\"created_at\":\"2018-06-14 14:20:31\",\"updated_at\":\"2018-06-14 15:54:44\",\"deleted_at\":\"-0001-11-30 00:00:00\"}}"}],"_postman_id":"ac9f3b29-5ed8-495b-9fbe-e38eb25ce4b2"},{"name":"控制台-部门-列表","id":"0936c5d2-a230-4aeb-b424-cb2671b0a80e","request":{"method":"GET","header":[{"key":"Cookie","value":"user_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw"}],"body":{"mode":"raw","raw":""},"url":"{{URL}}/console/Index.php?c=department&a=list","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"department"},{"key":"a","value":"list"}],"variable":[]}},"response":[{"id":"f33b0e39-6488-4c48-a130-c18cf8c826b3","name":"200","originalRequest":{"method":"GET","header":[{"key":"Cookie","value":"user_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{URL}}/console/Index.php?c=department&a=list","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"department"},{"key":"a","value":"list"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 07:56:53 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":[{\"id\":1334451,\"account_id\":316,\"parent_id\":-2,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"xuhaidong\",\"name_py\":\"Xuhaidong\",\"name_first\":\"x\",\"order\":null,\"created_at\":\"2018-06-04 15:43:03\",\"updated_at\":\"2018-06-04 15:43:03\",\"deleted_at\":\"-0001-11-30 00:00:00\"},{\"id\":1334395,\"account_id\":316,\"parent_id\":-1,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"xuhaidong\",\"name_py\":\"Xuhaidong\",\"name_first\":\"x\",\"order\":null,\"created_at\":\"2018-04-11 14:05:36\",\"updated_at\":\"2018-04-11 14:05:36\",\"deleted_at\":\"-0001-11-30 00:00:00\"},{\"id\":1334506,\"account_id\":316,\"parent_id\":1334395,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"113\",\"name_py\":\"113\",\"name_first\":\"1\",\"order\":null,\"created_at\":\"2018-06-14 14:20:31\",\"updated_at\":\"2018-06-14 15:54:44\",\"deleted_at\":\"-0001-11-30 00:00:00\"},{\"id\":1334512,\"account_id\":316,\"parent_id\":1334395,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"2\",\"name_py\":\"2\",\"name_first\":\"2\",\"order\":null,\"created_at\":\"2018-06-14 15:42:38\",\"updated_at\":\"2018-06-14 15:42:38\",\"deleted_at\":\"-0001-11-30 00:00:00\"},{\"id\":1334509,\"account_id\":316,\"parent_id\":1334395,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"\\u4ea7\\u54c1\\u90e8\",\"name_py\":\"ChanPinBu\",\"name_first\":\"cpb\",\"order\":null,\"created_at\":\"2018-06-14 15:38:11\",\"updated_at\":\"2018-06-14 15:38:11\",\"deleted_at\":\"-0001-11-30 00:00:00\"},{\"id\":1334504,\"account_id\":316,\"parent_id\":1334451,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"12345678\",\"name_py\":\"12345678\",\"name_first\":\"1\",\"order\":null,\"created_at\":\"2018-06-14 14:00:03\",\"updated_at\":\"2018-06-14 14:00:03\",\"deleted_at\":\"-0001-11-30 00:00:00\"},{\"id\":1334452,\"account_id\":316,\"parent_id\":1334451,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"xuhaidong\\u521b\\u5efa\\u7684\\u76f4\\u64ad\",\"name_py\":\"XuhaidongChuangJianDeZhiBo\",\"name_first\":\"xcjdzb\",\"order\":null,\"created_at\":\"2018-06-04 15:43:03\",\"updated_at\":\"2018-06-04 15:43:03\",\"deleted_at\":\"-0001-11-30 00:00:00\"},{\"id\":1334460,\"account_id\":316,\"parent_id\":1334451,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"\\u4fee\\u6539\\u57f9\\u8bad\\u65f6\\u95f4\",\"name_py\":\"XiuGaiPeiXunShiJian\",\"name_first\":\"xgpxsj\",\"order\":null,\"created_at\":\"2018-06-08 14:17:05\",\"updated_at\":\"2018-06-08 14:17:05\",\"deleted_at\":\"-0001-11-30 00:00:00\"}]}"}],"_postman_id":"0936c5d2-a230-4aeb-b424-cb2671b0a80e"},{"name":"控制台-部门-从当前部门删除观众","id":"dadb551c-4072-4f54-9b54-c2b030a25f02","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"1334506","type":"text","description":"<p>当前部门ID（在当前部门删除人员）</p>\n"},{"key":"audience_ids","value":"98223","type":"text","description":"<p>人员audience的id</p>\n"}]},"url":"{{URL}}/console/Index.php?c=department&a=deleteAudiences","description":"<ul>\n<li>注意: 当观众只有一个部门时，会彻底删除此观众</li>\n</ul>\n","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"department"},{"key":"a","value":"deleteAudiences"}],"variable":[]}},"response":[{"id":"4f4de5b9-9cda-4a09-839f-08d39cec0b49","name":"400","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"1334506","type":"text","description":"当前部门ID（在当前部门删除人员）"},{"key":"audience_ids","value":"98223","type":"text","description":"人员audience的id"}]},"url":{"raw":"{{URL}}/console/Index.php?c=department&a=deleteAudiences","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"department"},{"key":"a","value":"deleteAudiences"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 08:18:04 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":null}"}],"_postman_id":"dadb551c-4072-4f54-9b54-c2b030a25f02"},{"name":"控制台-部门-所有观众","id":"abead362-577c-4253-9df4-a34f26f3d9a8","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"1334559","type":"text","description":"<p>部门id</p>\n"}]},"url":"{{URL}}/console/Index.php?c=department&a=allAudiences","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"department"},{"key":"a","value":"allAudiences"}],"variable":[]}},"response":[{"id":"4968fbdf-c6c4-47f7-a7ab-283aa953b447","name":"400","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"1334559","type":"text"}]},"url":{"raw":"{{URL}}/console/Index.php?c=department&a=allAudiences","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"department"},{"key":"a","value":"allAudiences"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 08:20:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":[{\"id\":98220,\"account_id\":316,\"ding_id\":null,\"ding_user_id\":null,\"ding_union_id\":null,\"job_number\":\"000001\",\"name\":\"\\u5218\\u5fb7\\u534e\",\"name_py\":\"LiuDeHua\",\"name_first\":\"ldh\",\"position\":\"\\u6b4c\\u624b\",\"avatar\":null,\"mobile\":\"16666666666\",\"tel\":null,\"work_place\":null,\"remark\":null,\"email\":null,\"device\":null,\"ip\":null,\"extattr\":null,\"created_at\":\"2018-06-14 16:14:39\",\"updated_at\":\"2018-06-14 16:14:39\",\"deleted_at\":\"-0001-11-30 00:00:00\"},{\"id\":98223,\"account_id\":316,\"ding_id\":null,\"ding_user_id\":null,\"ding_union_id\":null,\"job_number\":\"000004\",\"name\":\"\\u6797\\u4fca\\u6770\",\"name_py\":\"LinJunJie\",\"name_first\":\"ljj\",\"position\":\"\\u6b4c\\u624b\",\"avatar\":null,\"mobile\":\"16666666668\",\"tel\":null,\"work_place\":null,\"remark\":null,\"email\":null,\"device\":null,\"ip\":null,\"extattr\":null,\"created_at\":\"2018-06-14 16:14:40\",\"updated_at\":\"2018-06-14 16:14:40\",\"deleted_at\":\"-0001-11-30 00:00:00\"},{\"id\":98224,\"account_id\":316,\"ding_id\":null,\"ding_user_id\":null,\"ding_union_id\":null,\"job_number\":\"000005\",\"name\":\"\\u5f20\\u827a\\u5174\",\"name_py\":\"ZhangYiXing\",\"name_first\":\"zyx\",\"position\":\"\\u6b4c\\u624b\",\"avatar\":null,\"mobile\":\"16666666669\",\"tel\":null,\"work_place\":null,\"remark\":null,\"email\":null,\"device\":null,\"ip\":null,\"extattr\":null,\"created_at\":\"2018-06-14 16:14:40\",\"updated_at\":\"2018-06-14 16:14:40\",\"deleted_at\":\"-0001-11-30 00:00:00\"},{\"id\":98225,\"account_id\":316,\"ding_id\":null,\"ding_user_id\":null,\"ding_union_id\":null,\"job_number\":\"000006\",\"name\":\"\\u7f57\\u5fd7\\u7965\",\"name_py\":\"LuoZhiXiang\",\"name_first\":\"lzx\",\"position\":\"\\u6b4c\\u624b\",\"avatar\":null,\"mobile\":\"13366666666\",\"tel\":null,\"work_place\":null,\"remark\":null,\"email\":null,\"device\":null,\"ip\":null,\"extattr\":null,\"created_at\":\"2018-06-14 16:14:40\",\"updated_at\":\"2018-06-14 16:14:40\",\"deleted_at\":\"-0001-11-30 00:00:00\"},{\"id\":98226,\"account_id\":316,\"ding_id\":null,\"ding_user_id\":null,\"ding_union_id\":null,\"job_number\":\"000007\",\"name\":\"\\u5f20\\u536b\\u5065\",\"name_py\":\"ZhangWeiJian\",\"name_first\":\"zwj\",\"position\":\"\\u6b4c\\u624b\",\"avatar\":null,\"mobile\":\"16336666666\",\"tel\":null,\"work_place\":null,\"remark\":null,\"email\":null,\"device\":null,\"ip\":null,\"extattr\":null,\"created_at\":\"2018-06-14 16:14:40\",\"updated_at\":\"2018-06-14 16:14:40\",\"deleted_at\":\"-0001-11-30 00:00:00\"},{\"id\":98227,\"account_id\":316,\"ding_id\":null,\"ding_user_id\":null,\"ding_union_id\":null,\"job_number\":\"000008\",\"name\":\"\\u8c22\\u9706\\u950b\",\"name_py\":\"XieTingFeng\",\"name_first\":\"xtf\",\"position\":\"\\u6b4c\\u624b\",\"avatar\":null,\"mobile\":\"16666336666\",\"tel\":null,\"work_place\":null,\"remark\":null,\"email\":null,\"device\":null,\"ip\":null,\"extattr\":null,\"created_at\":\"2018-06-14 16:14:40\",\"updated_at\":\"2018-06-14 16:14:40\",\"deleted_at\":\"-0001-11-30 00:00:00\"},{\"id\":98228,\"account_id\":316,\"ding_id\":null,\"ding_user_id\":null,\"ding_union_id\":null,\"job_number\":\"000009\",\"name\":\"\\u9648\\u5955\\u8fc5\",\"name_py\":\"ChenYiXun\",\"name_first\":\"cyx\",\"position\":\"\\u6b4c\\u624b\",\"avatar\":null,\"mobile\":\"16666666446\",\"tel\":null,\"work_place\":null,\"remark\":null,\"email\":null,\"device\":null,\"ip\":null,\"extattr\":null,\"created_at\":\"2018-06-14 16:14:41\",\"updated_at\":\"2018-06-14 16:14:41\",\"deleted_at\":\"-0001-11-30 00:00:00\"},{\"id\":98229,\"account_id\":316,\"ding_id\":null,\"ding_user_id\":null,\"ding_union_id\":null,\"job_number\":\"000010\",\"name\":\"\\u9648\\u4fe1\\u5b8f\",\"name_py\":\"ChenXinHong\",\"name_first\":\"cxh\",\"position\":\"\\u6b4c\\u624b\",\"avatar\":null,\"mobile\":\"16664446666\",\"tel\":null,\"work_place\":null,\"remark\":null,\"email\":null,\"device\":null,\"ip\":null,\"extattr\":null,\"created_at\":\"2018-06-14 16:14:41\",\"updated_at\":\"2018-06-14 16:14:41\",\"deleted_at\":\"-0001-11-30 00:00:00\"},{\"id\":98230,\"account_id\":316,\"ding_id\":null,\"ding_user_id\":null,\"ding_union_id\":null,\"job_number\":\"000011\",\"name\":\"\\u5f20\\u5b66\\u53cb\",\"name_py\":\"ZhangXueYou\",\"name_first\":\"zxy\",\"position\":\"\\u6b4c\\u624b\",\"avatar\":null,\"mobile\":\"16666555566\",\"tel\":null,\"work_place\":null,\"remark\":null,\"email\":null,\"device\":null,\"ip\":null,\"extattr\":null,\"created_at\":\"2018-06-14 16:14:41\",\"updated_at\":\"2018-06-14 16:14:41\",\"deleted_at\":\"-0001-11-30 00:00:00\"},{\"id\":98231,\"account_id\":316,\"ding_id\":null,\"ding_user_id\":null,\"ding_union_id\":null,\"job_number\":\"000012\",\"name\":\"\\u5468\\u534e\\u5065\",\"name_py\":\"ZhouHuaJian\",\"name_first\":\"zhj\",\"position\":\"\\u6b4c\\u624b\",\"avatar\":null,\"mobile\":\"16666666676\",\"tel\":null,\"work_place\":null,\"remark\":null,\"email\":null,\"device\":null,\"ip\":null,\"extattr\":null,\"created_at\":\"2018-06-14 16:14:41\",\"updated_at\":\"2018-06-14 16:14:41\",\"deleted_at\":\"-0001-11-30 00:00:00\"}]}"}],"_postman_id":"abead362-577c-4253-9df4-a34f26f3d9a8"},{"name":"控制台-部门-搜索","id":"a44e34b9-f0bb-4554-919d-95bedae6f133","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"key","value":"b","type":"text","description":"<p>搜索关键字</p>\n"}]},"url":"{{URL}}/console/Index.php?c=department&a=search","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"department"},{"key":"a","value":"search"}],"variable":[]}},"response":[{"id":"6cd3b176-6298-4115-800f-cf6bb8747eb7","name":"200","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"key","value":"b","type":"text","description":"搜索关键字"}]},"url":{"raw":"{{URL}}/console/Index.php?c=department&a=search","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"department"},{"key":"a","value":"search"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"text/html;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 14 Jun 2018 08:20:48 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.12.2","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"192.168.2.115","path":"/","secure":false,"value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIn0.eyJpc3MiOiJ4aWFrZS5tdWR1LnR2IiwiYXVkIjoieGlha2UubXVkdS50diIsImp0aSI6IkNhUUFkYmlZc0pXVHJacW51UklzTURPcDYwRmtYTVdJIiwiaWF0IjoxNTI4OTQ4Nzg5LCJleHAiOjE1MjkwMzUxODksImlkIjoiWnJHZ3plN0dZdXFNeDdLR1R5bnlqdjhDSEU1bUV6VUoiLCJhY2NvdW50X2lkIjozMTYsIm5hbWUiOiJ4dWhhaWRvbmciLCJyb2xlIjoidXNlciIsImZyb20iOiJvcmlnaW4iLCJzZXNzaW9uIjoidERURThUOU54QVpLVUxQRE0zeHJnam9mZ3JSWG9IQzkifQ.VFttaTB2_7uMm_xfIZn9bqrjSIzCWoH0RTcFx800U_BpqmKuE13EwzEAghBUkJ6b9NAr6ZYSj9xRdMwWz-97Rw","key":"user_token"}],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"departmentResult\":[{\"id\":1334509,\"account_id\":316,\"parent_id\":1334395,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"\\u4ea7\\u54c1\\u90e8\",\"name_py\":\"ChanPinBu\",\"name_first\":\"cpb\",\"order\":null,\"created_at\":\"2018-06-14 15:38:11\",\"updated_at\":\"2018-06-14 15:38:11\",\"deleted_at\":\"-0001-11-30 00:00:00\"},{\"id\":1334559,\"account_id\":316,\"parent_id\":1334395,\"ding_id\":0,\"ding_parent_id\":0,\"name\":\"\\u6f14\\u827a\\u90e8\",\"name_py\":\"YanYiBu\",\"name_first\":\"yyb\",\"order\":null,\"created_at\":\"2018-06-14 16:14:04\",\"updated_at\":\"2018-06-14 16:14:04\",\"deleted_at\":\"-0001-11-30 00:00:00\"}],\"audienceResult\":[]}}"}],"_postman_id":"a44e34b9-f0bb-4554-919d-95bedae6f133"}],"id":"d2b78b10-8aaa-4cd5-870f-73333ad44fee","_postman_id":"d2b78b10-8aaa-4cd5-870f-73333ad44fee","description":""},{"name":"观众端-观看[token方式登录]","item":[{"name":"公开观看-登录","id":"bcd0fafc-7cbd-413c-8587-31f2cc38fbac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"test","description":"<p>公开观看输入的名称</p>\n","type":"text"},{"key":"id","value":"lFB1FwrZQNuZZtbVDbiVxXp4uopBM23E","description":"<p>直播间id</p>\n","type":"text"}]},"url":"{{URL}}/Index.php?c=session&a=anonymousLogin","urlObject":{"path":["Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"session"},{"key":"a","value":"anonymousLogin"}],"variable":[]}},"response":[{"id":"e5fef2b0-9124-448a-ba8d-2b6d0f5d5ba7","name":"公开观看-登录","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"test","description":"公开观看输入的名称","type":"text"},{"key":"id","value":"lFB1FwrZQNuZZtbVDbiVxXp4uopBM23E","description":"直播间id","type":"text"}]},"url":{"raw":"{{URL}}/Index.php?c=session&a=anonymousLogin","host":["{{URL}}"],"path":["Index.php"],"query":[{"key":"c","value":"session"},{"key":"a","value":"anonymousLogin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.1"},{"key":"Date","value":"Wed, 26 Dec 2018 03:02:10 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"audience_id=106109; expires=Wed, 26-Dec-2018 04:02:10 GMT; Max-Age=3600; path=/"},{"key":"Set-Cookie","value":"audience_info=%7B%22name%22%3A%22test%22%2C%22device%22%3A2%7D; expires=Wed, 26-Dec-2018 04:02:10 GMT; Max-Age=3600; path=/"},{"key":"Set-Cookie","value":"session_key=30ebgO74zuNjcAzpZKhYBe7CUKHSF1qc; expires=Wed, 26-Dec-2018 04:02:10 GMT; Max-Age=3600; path=/"},{"key":"Set-Cookie","value":"audience_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Ill5YUZleHhja2FwTWNLalZTeDcxR3p1eUdtTDRCZkFyIn0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiWXlhRmV4eGNrYXBNY0tqVlN4NzFHenV5R21MNEJmQXIiLCJpYXQiOjE1NDU3OTMzMzAsImV4cCI6MTU0NTg3OTczMCwiYXVkaWVuY2VfaWQiOjEwNjEwOSwiYXVkaWVuY2VfbmFtZSI6InRlc3QifQ.JE6zj1WsyyDcMWSeEgX0ZGVHb5mDNtZOtvkAEJnJxMZ7JkMXV0MrPQtVk3ghbhX1I8645f5eMlehkAXoLf5vVA; expires=Thu, 27-Dec-2018 03:02:10 GMT; Max-Age=86400; path=/"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Ill5YUZleHhja2FwTWNLalZTeDcxR3p1eUdtTDRCZkFyIn0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiWXlhRmV4eGNrYXBNY0tqVlN4NzFHenV5R21MNEJmQXIiLCJpYXQiOjE1NDU3OTMzMzAsImV4cCI6MTU0NTg3OTczMCwiYXVkaWVuY2VfaWQiOjEwNjEwOSwiYXVkaWVuY2VfbmFtZSI6InRlc3QifQ.JE6zj1WsyyDcMWSeEgX0ZGVHb5mDNtZOtvkAEJnJxMZ7JkMXV0MrPQtVk3ghbhX1I8645f5eMlehkAXoLf5vVA\"}"}],"_postman_id":"bcd0fafc-7cbd-413c-8587-31f2cc38fbac"},{"name":"公开观看-token登录跳转观看页","id":"ded37107-925d-49f6-83c8-14da58e2e0e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{URL}}/Index.php?c=session&a=sessionLogin&id=lFB1FwrZQNuZZtbVDbiVxXp4uopBM23E&audience_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Ill5YUZleHhja2FwTWNLalZTeDcxR3p1eUdtTDRCZkFyIn0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiWXlhRmV4eGNrYXBNY0tqVlN4NzFHenV5R21MNEJmQXIiLCJpYXQiOjE1NDU3OTMzMzAsImV4cCI6MTU0NTg3OTczMCwiYXVkaWVuY2VfaWQiOjEwNjEwOSwiYXVkaWVuY2VfbmFtZSI6InRlc3QifQ.JE6zj1WsyyDcMWSeEgX0ZGVHb5mDNtZOtvkAEJnJxMZ7JkMXV0MrPQtVk3ghbhX1I8645f5eMlehkAXoLf5vVA","urlObject":{"path":["Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"session"},{"key":"a","value":"sessionLogin"},{"description":{"content":"<p>直播间ID</p>\n","type":"text/plain"},"key":"id","value":"lFB1FwrZQNuZZtbVDbiVxXp4uopBM23E"},{"description":{"content":"<p>观众token,访问anonymousLogin返回的data</p>\n","type":"text/plain"},"key":"audience_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Ill5YUZleHhja2FwTWNLalZTeDcxR3p1eUdtTDRCZkFyIn0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiWXlhRmV4eGNrYXBNY0tqVlN4NzFHenV5R21MNEJmQXIiLCJpYXQiOjE1NDU3OTMzMzAsImV4cCI6MTU0NTg3OTczMCwiYXVkaWVuY2VfaWQiOjEwNjEwOSwiYXVkaWVuY2VfbmFtZSI6InRlc3QifQ.JE6zj1WsyyDcMWSeEgX0ZGVHb5mDNtZOtvkAEJnJxMZ7JkMXV0MrPQtVk3ghbhX1I8645f5eMlehkAXoLf5vVA"}],"variable":[]}},"response":[],"_postman_id":"ded37107-925d-49f6-83c8-14da58e2e0e3"}],"id":"98ceee76-7acf-4ff7-be9b-72c64129ed77","_postman_id":"98ceee76-7acf-4ff7-be9b-72c64129ed77","description":""},{"name":"观众端-外部人员对接","item":[{"name":"\b指定人员\b[白名单]-获取登录token","id":"a859406d-52d5-47a8-be2b-7faf45b7107e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"description":"<p>直播间id【可选，填写生成登录直播间token，未填写生成个人中心token】</p>\n","key":"live_id","type":"text","value":"2oVKUfW5NJ0d6Cr01jcPXSIA5839Buh\rd"},{"description":"<p>观众登录唯一id，作为登录和数据导出的\b唯一凭证（string 30）</p>\n","key":"unique_id","type":"text","value":"10000"},{"description":"<p>观众姓名</p>\n","key":"user_name","type":"text","value":"test_1"}]},"url":"{{URL}}/console/Index.php?c=audienceoauth&a=authLogin","urlObject":{"path":["console","Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"audienceoauth"},{"key":"a","value":"authLogin"}],"variable":[]}},"response":[{"id":"22e0db57-d7c8-41c6-83ef-7b9b31c05549","name":"\b指定人员\b[白名单]-获取登录token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"description":"直播间id【可选，填写生成登录直播间token，未填写生成个人中心token】","key":"live_id","type":"text","value":"2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha"},{"description":"观众登录唯一id，作为登录和数据导出的\b唯一凭证","key":"unique_id","type":"text","value":"10000"},{"description":"观众姓名","key":"user_name","type":"text","value":"test_1"}]},"url":{"raw":"{{URL}}/console/Index.php?c=audienceoauth&a=authLogin","host":["{{URL}}"],"path":["console","Index.php"],"query":[{"key":"c","value":"audienceoauth"},{"key":"a","value":"authLogin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Wed, 19 Jun 2019 06:58:04 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"audience_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IjlXaWhrbUpmUnJ3SmRtclVRWlJZNXhQTFVDaHFZZXQzIn0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiOVdpaGttSmZScndKZG1yVVFaUlk1eFBMVUNocVlldDMiLCJpYXQiOjE1NjA5Mjc0ODMsImV4cCI6MTU2MTAxMzg4MywiYXVkaWVuY2VfaWQiOjM3MzA1MCwiYXVkaWVuY2VfbmFtZSI6InRlc3RfMSJ9.Py9Umppi-ojoJZcAnxvdgffAs42BEQa9PB63i77qNYrCdotK3QGRYXywqobJ41RkpzrFjtJulOEnrOi8UyGKvQ; expires=Thu, 20-Jun-2019 06:58:03 GMT; Max-Age=86400; path=/"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"\",\"data\":{\"audience_token\":\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IjlXaWhrbUpmUnJ3SmRtclVRWlJZNXhQTFVDaHFZZXQzIn0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiOVdpaGttSmZScndKZG1yVVFaUlk1eFBMVUNocVlldDMiLCJpYXQiOjE1NjA5Mjc0ODMsImV4cCI6MTU2MTAxMzg4MywiYXVkaWVuY2VfaWQiOjM3MzA1MCwiYXVkaWVuY2VfbmFtZSI6InRlc3RfMSJ9.Py9Umppi-ojoJZcAnxvdgffAs42BEQa9PB63i77qNYrCdotK3QGRYXywqobJ41RkpzrFjtJulOEnrOi8UyGKvQ\"}}"}],"_postman_id":"a859406d-52d5-47a8-be2b-7faf45b7107e"},{"name":"\b\b\b白名单用户-登录观看页","id":"d65bd909-e94a-45cf-bb13-ed455d967c84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{URL}}/Index.php?c=session&a=sessionLogin&id=2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha&audience_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IjlXaWhrbUpmUnJ3SmRtclVRWlJZNXhQTFVDaHFZZXQzIn0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiOVdpaGttSmZScndKZG1yVVFaUlk1eFBMVUNocVlldDMiLCJpYXQiOjE1NjA5Mjc0ODMsImV4cCI6MTU2MTAxMzg4MywiYXVkaWVuY2VfaWQiOjM3MzA1MCwiYXVkaWVuY2VfbmFtZSI6InRlc3RfMSJ9.Py9Umppi-ojoJZcAnxvdgffAs42BEQa9PB63i77qNYrCdotK3QGRYXywqobJ41RkpzrFjtJulOEnrOi8UyGKvQ","urlObject":{"path":["Index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"session"},{"key":"a","value":"sessionLogin"},{"description":{"content":"<p>直播间id</p>\n","type":"text/plain"},"key":"id","value":"2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha"},{"description":{"content":"<p>观众登录token，从指定人员\b[白名单]-获取登录token获取</p>\n","type":"text/plain"},"key":"audience_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IjlXaWhrbUpmUnJ3SmRtclVRWlJZNXhQTFVDaHFZZXQzIn0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiOVdpaGttSmZScndKZG1yVVFaUlk1eFBMVUNocVlldDMiLCJpYXQiOjE1NjA5Mjc0ODMsImV4cCI6MTU2MTAxMzg4MywiYXVkaWVuY2VfaWQiOjM3MzA1MCwiYXVkaWVuY2VfbmFtZSI6InRlc3RfMSJ9.Py9Umppi-ojoJZcAnxvdgffAs42BEQa9PB63i77qNYrCdotK3QGRYXywqobJ41RkpzrFjtJulOEnrOi8UyGKvQ"}],"variable":[]}},"response":[{"id":"21e9f43a-669a-43a5-9dff-e80f8ce1adb6","name":"\b\b\b白名单用户-登录观看页","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{URL}}/Index.php?c=session&a=sessionLogin&id=2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha&audience_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IjlXaWhrbUpmUnJ3SmRtclVRWlJZNXhQTFVDaHFZZXQzIn0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiOVdpaGttSmZScndKZG1yVVFaUlk1eFBMVUNocVlldDMiLCJpYXQiOjE1NjA5Mjc0ODMsImV4cCI6MTU2MTAxMzg4MywiYXVkaWVuY2VfaWQiOjM3MzA1MCwiYXVkaWVuY2VfbmFtZSI6InRlc3RfMSJ9.Py9Umppi-ojoJZcAnxvdgffAs42BEQa9PB63i77qNYrCdotK3QGRYXywqobJ41RkpzrFjtJulOEnrOi8UyGKvQ","host":["{{URL}}"],"path":["Index.php"],"query":[{"key":"c","value":"session"},{"key":"a","value":"sessionLogin"},{"key":"id","value":"2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha","description":"直播间id"},{"key":"audience_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IjlXaWhrbUpmUnJ3SmRtclVRWlJZNXhQTFVDaHFZZXQzIn0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiOVdpaGttSmZScndKZG1yVVFaUlk1eFBMVUNocVlldDMiLCJpYXQiOjE1NjA5Mjc0ODMsImV4cCI6MTU2MTAxMzg4MywiYXVkaWVuY2VfaWQiOjM3MzA1MCwiYXVkaWVuY2VfbmFtZSI6InRlc3RfMSJ9.Py9Umppi-ojoJZcAnxvdgffAs42BEQa9PB63i77qNYrCdotK3QGRYXywqobJ41RkpzrFjtJulOEnrOi8UyGKvQ","description":"观众登录token，从指定人员\b[白名单]-获取登录token获取"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Wed, 19 Jun 2019 07:11:42 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"audience_account_uuid=RzQwfjxhimKysJZ7aWrQBRrjZl9uu5NV; expires=Fri, 19-Jul-2019 07:11:40 GMT; Max-Age=2592000; path=/"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"<!DOCTYPE html>\n<html>\n    <head>\n        <meta charset=\"utf-8\">\n        <title>观看页</title>\n        <!--IE8 Standards Mode-->\n        <meta http-equiv=\"X-UA-Compatible\" content=\"IE=EDGE\"/>\n        <meta name=\"apple-mobile-web-app-capable\" content=\"yes\"/>\n        <meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black\">\n        <!-- iphone禁用电话号码识别 -->\n        <meta name=\"format-detection\" content=\"telephone=no\"/>\n    </head>\n    <body>\n        <div id=\"watch\"></div>\n        <script>\n    window.NAT_SERVERS = ['wss://msg-ws.myun.tv'];\n    var initData = {\"is_customized_domain\":true,\"rtmp_pull\":[\"rtmp:\\/\\/xiake1-live.mudu.tv\\/watch\\/\"],\"hls_pull\":[\"https:\\/\\/xiake1-live.mudu.tv\\/watch\\/\"],\"mqtt_host\":\"xiake.mudu.tv\",\"mqtt_websocket\":\"9001\",\"platform\":\"public\",\"default_sys_name\":\"\\u76ee\\u7779\\u6709\\u8bfe\",\"default_web_host_name\":\"xiake1.mudu.tv\",\"default_rtmp_host_name\":\"xiake1-rtmp.mudu.tv\",\"player\":\"1\"};\ninitData.timeDiff = new Date() - 1560928302870;\n    initData.version = 1;\n    initData.favicon = \"\\/\\/static100.mudu.tv\\/static\\/files\\/img\\/console\\/brand\\/bigLogo.png\";\n</script>\n        <script src=//static100.mudu.tv/static/files/global_modules/pollify/bluebird.min.js></script>\n        <script src=//static100.mudu.tv/static/files/global_modules/pollify/es5-shim.min.js></script>\n        <script src=//static.mudu.tv/static/mrtc-js-sdk/1.2.14/mrtc-js-sdk.js></script>\n        <script src=\"//static100.mudu.tv/static/files/dll/vendor_5fd20bd3b9cf8f781541.js\"></script>\n        <script src=\"//static100.mudu.tv/static/files/global_modules/firstname/pinyin_dict_firstletter.js\"></script>\n        <script src=\"//at.alicdn.com/t/font_309823_mh8ih38pga.js\"></script>\n        <script src=/assets/dist/antd_css.aee49e208195627e0264.entry.js></script>\n        <script src=\"/assets/dist/watch_entry.aee49e208195627e0264.entry.js\"></script>\n    </body>\n</html>"},{"id":"9ac2e109-1fb1-4f83-8f19-2aa1efeba2ee","name":"\b\b\b白名单用户-登录观看页","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{URL}}/Index.php?c=session&a=sessionLogin&id=2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha&audience_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IjlXaWhrbUpmUnJ3SmRtclVRWlJZNXhQTFVDaHFZZXQzIn0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiOVdpaGttSmZScndKZG1yVVFaUlk1eFBMVUNocVlldDMiLCJpYXQiOjE1NjA5Mjc0ODMsImV4cCI6MTU2MTAxMzg4MywiYXVkaWVuY2VfaWQiOjM3MzA1MCwiYXVkaWVuY2VfbmFtZSI6InRlc3RfMSJ9.Py9Umppi-ojoJZcAnxvdgffAs42BEQa9PB63i77qNYrCdotK3QGRYXywqobJ41RkpzrFjtJulOEnrOi8UyGKvQ","host":["{{URL}}"],"path":["Index.php"],"query":[{"key":"c","value":"session"},{"key":"a","value":"sessionLogin"},{"key":"id","value":"2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha","description":"直播间id"},{"key":"audience_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6IjlXaWhrbUpmUnJ3SmRtclVRWlJZNXhQTFVDaHFZZXQzIn0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiOVdpaGttSmZScndKZG1yVVFaUlk1eFBMVUNocVlldDMiLCJpYXQiOjE1NjA5Mjc0ODMsImV4cCI6MTU2MTAxMzg4MywiYXVkaWVuY2VfaWQiOjM3MzA1MCwiYXVkaWVuY2VfbmFtZSI6InRlc3RfMSJ9.Py9Umppi-ojoJZcAnxvdgffAs42BEQa9PB63i77qNYrCdotK3QGRYXywqobJ41RkpzrFjtJulOEnrOi8UyGKvQ","description":"观众登录audience_token从指定人员\b[白名单]-获取登录token获取"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Wed, 19 Jun 2019 07:11:42 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"audience_account_uuid=RzQwfjxhimKysJZ7aWrQBRrjZl9uu5NV; expires=Fri, 19-Jul-2019 07:11:40 GMT; Max-Age=2592000; path=/"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"<!DOCTYPE html>\n<html>\n    <head>\n        <meta charset=\"utf-8\">\n        <title>观看页</title>\n        <!--IE8 Standards Mode-->\n        <meta http-equiv=\"X-UA-Compatible\" content=\"IE=EDGE\"/>\n        <meta name=\"apple-mobile-web-app-capable\" content=\"yes\"/>\n        <meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black\">\n        <!-- iphone禁用电话号码识别 -->\n        <meta name=\"format-detection\" content=\"telephone=no\"/>\n    </head>\n    <body>\n        <div id=\"watch\"></div>\n        <script>\n    window.NAT_SERVERS = ['wss://msg-ws.myun.tv'];\n    var initData = {\"is_customized_domain\":true,\"rtmp_pull\":[\"rtmp:\\/\\/xiake1-live.mudu.tv\\/watch\\/\"],\"hls_pull\":[\"https:\\/\\/xiake1-live.mudu.tv\\/watch\\/\"],\"mqtt_host\":\"xiake.mudu.tv\",\"mqtt_websocket\":\"9001\",\"platform\":\"public\",\"default_sys_name\":\"\\u76ee\\u7779\\u6709\\u8bfe\",\"default_web_host_name\":\"xiake1.mudu.tv\",\"default_rtmp_host_name\":\"xiake1-rtmp.mudu.tv\",\"player\":\"1\"};\ninitData.timeDiff = new Date() - 1560928302870;\n    initData.version = 1;\n    initData.favicon = \"\\/\\/static100.mudu.tv\\/static\\/files\\/img\\/console\\/brand\\/bigLogo.png\";\n</script>\n        <script src=//static100.mudu.tv/static/files/global_modules/pollify/bluebird.min.js></script>\n        <script src=//static100.mudu.tv/static/files/global_modules/pollify/es5-shim.min.js></script>\n        <script src=//static.mudu.tv/static/mrtc-js-sdk/1.2.14/mrtc-js-sdk.js></script>\n        <script src=\"//static100.mudu.tv/static/files/dll/vendor_5fd20bd3b9cf8f781541.js\"></script>\n        <script src=\"//static100.mudu.tv/static/files/global_modules/firstname/pinyin_dict_firstletter.js\"></script>\n        <script src=\"//at.alicdn.com/t/font_309823_mh8ih38pga.js\"></script>\n        <script src=/assets/dist/antd_css.aee49e208195627e0264.entry.js></script>\n        <script src=\"/assets/dist/watch_entry.aee49e208195627e0264.entry.js\"></script>\n    </body>\n</html>"}],"_postman_id":"d65bd909-e94a-45cf-bb13-ed455d967c84"}],"id":"56150b0b-e37f-4036-93b2-059bf04eec61","_postman_id":"56150b0b-e37f-4036-93b2-059bf04eec61","description":""},{"name":"控制台-讲师[必须是在单讲师直播间]","item":[{"name":"设置讲师","id":"078da338-194d-4a18-b6dc-2b1785b1f0ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Cookie","value":"have_used_live_control=true; audience_account_uuid=RzQwfjxhimKysJZ7aWrQBRrjZl9uu5NV; PHPSESSID=vibabbk0lpalrdsqueom6ls6rf; Hm_lvt_05f4960e2ae97d3522555e947098edd0=1560319233,1561012364,1561012582,1561342774; user_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Ik5jV1Q4azRJZW1ycDJCR01PbjlwY0xzMUhaUDcxUWI3In0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiTmNXVDhrNEllbXJwMkJHTU9uOXBjTHMxSFpQNzFRYjciLCJpYXQiOjE1NjE1MzEzMTcsImV4cCI6MTU2MTYxNzcxNywiaWQiOiJSelF3Zmp4aGltS3lzSlo3YVdyUUJScmpabDl1dTVOViIsImFjY291bnRfaWQiOjMyMiwibmFtZSI6InBlYW51dCIsInJvbGUiOiJ1c2VyIiwiZnJvbSI6Im9yaWdpbiIsImV4dHJhIjpbXSwic2Vzc2lvbiI6IjNweFBBMUxpMGlPNkFYUEs0MmE1bmxISkJjUlZidE1DIn0.bzgB_rjKWsz-8egYEoAEj6vFoNtOQW52vBl7EamoOu8j3zVfElZED4Ak8vw68u5xE6AGJ2lMFwOTXjFLp51JkQ; Hm_lpvt_05f4960e2ae97d3522555e947098edd0=1561532679","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"live_id","value":"2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha","description":"<p>直播间id</p>\n","type":"text"},{"key":"name","value":"\btestInstructors","description":"<p>讲师名称</p>\n","type":"text"},{"key":"password","value":"123456","description":"<p>讲师\b进入直播间密码</p>\n","type":"text"}]},"url":"{{URL}}/console/index.php?c=instructor&a=setInstructor","urlObject":{"path":["console","index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"instructor"},{"key":"a","value":"setInstructor"}],"variable":[]}},"response":[{"id":"3331209b-5c3b-4afa-b77d-8e5446d8f7cc","name":"设置讲师","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Cookie","value":"have_used_live_control=true; audience_account_uuid=RzQwfjxhimKysJZ7aWrQBRrjZl9uu5NV; PHPSESSID=vibabbk0lpalrdsqueom6ls6rf; Hm_lvt_05f4960e2ae97d3522555e947098edd0=1560319233,1561012364,1561012582,1561342774; user_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Ik5jV1Q4azRJZW1ycDJCR01PbjlwY0xzMUhaUDcxUWI3In0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiTmNXVDhrNEllbXJwMkJHTU9uOXBjTHMxSFpQNzFRYjciLCJpYXQiOjE1NjE1MzEzMTcsImV4cCI6MTU2MTYxNzcxNywiaWQiOiJSelF3Zmp4aGltS3lzSlo3YVdyUUJScmpabDl1dTVOViIsImFjY291bnRfaWQiOjMyMiwibmFtZSI6InBlYW51dCIsInJvbGUiOiJ1c2VyIiwiZnJvbSI6Im9yaWdpbiIsImV4dHJhIjpbXSwic2Vzc2lvbiI6IjNweFBBMUxpMGlPNkFYUEs0MmE1bmxISkJjUlZidE1DIn0.bzgB_rjKWsz-8egYEoAEj6vFoNtOQW52vBl7EamoOu8j3zVfElZED4Ak8vw68u5xE6AGJ2lMFwOTXjFLp51JkQ; Hm_lpvt_05f4960e2ae97d3522555e947098edd0=1561532679","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"live_id","value":"2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha","description":"直播间id","type":"text"},{"key":"name","value":"\btestInstructors","description":"讲师名称","type":"text"},{"key":"password","value":"123456","description":"讲师\b进入直播间密码","type":"text"}]},"url":{"raw":"{{URL}}/console/index.php?c=instructor&a=setInstructor","host":["{{URL}}"],"path":["console","index.php"],"query":[{"key":"c","value":"instructor"},{"key":"a","value":"setInstructor"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Wed, 26 Jun 2019 08:22:07 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":1}"},{"id":"41e5cd06-4835-4d68-a04e-ba7fa356b860","name":"设置讲师","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"live_id","value":"2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha","description":"直播间id","type":"text"},{"key":"name","value":"\btestInstructor","description":"讲师名称","type":"text"},{"key":"password","value":"123456","description":"讲师\b进入直播间密码","type":"text"}]},"url":{"raw":"{{URL}}/console/index.php?c=instructor&a=setInstructor","host":["{{URL}}"],"path":["console","index.php"],"query":[{"key":"c","value":"instructor"},{"key":"a","value":"setInstructor"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Wed, 26 Jun 2019 08:27:34 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":1}"},{"id":"4bd3ef7e-0e42-47a3-983e-0466b755bf7e","name":"设置讲师","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Cookie","value":"have_used_live_control=true; audience_account_uuid=RzQwfjxhimKysJZ7aWrQBRrjZl9uu5NV; PHPSESSID=vibabbk0lpalrdsqueom6ls6rf; Hm_lvt_05f4960e2ae97d3522555e947098edd0=1560319233,1561012364,1561012582,1561342774; user_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Ik5jV1Q4azRJZW1ycDJCR01PbjlwY0xzMUhaUDcxUWI3In0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiTmNXVDhrNEllbXJwMkJHTU9uOXBjTHMxSFpQNzFRYjciLCJpYXQiOjE1NjE1MzEzMTcsImV4cCI6MTU2MTYxNzcxNywiaWQiOiJSelF3Zmp4aGltS3lzSlo3YVdyUUJScmpabDl1dTVOViIsImFjY291bnRfaWQiOjMyMiwibmFtZSI6InBlYW51dCIsInJvbGUiOiJ1c2VyIiwiZnJvbSI6Im9yaWdpbiIsImV4dHJhIjpbXSwic2Vzc2lvbiI6IjNweFBBMUxpMGlPNkFYUEs0MmE1bmxISkJjUlZidE1DIn0.bzgB_rjKWsz-8egYEoAEj6vFoNtOQW52vBl7EamoOu8j3zVfElZED4Ak8vw68u5xE6AGJ2lMFwOTXjFLp51JkQ; Hm_lpvt_05f4960e2ae97d3522555e947098edd0=1561532679","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[{"key":"live_id","value":"2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha","description":"直播间id","type":"text"},{"key":"name","value":"\btestInstructor","description":"讲师名称","type":"text"},{"key":"password","value":"123456","description":"讲师\b进入直播间密码","type":"text"}]},"url":{"raw":"{{URL}}/console/index.php?c=instructor&a=setInstructor","host":["{{URL}}"],"path":["console","index.php"],"query":[{"key":"c","value":"instructor"},{"key":"a","value":"setInstructor"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Wed, 26 Jun 2019 08:25:50 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":1}"},{"id":"5ae42d49-a975-4c9d-aa8f-b832814a964d","name":"设置讲师","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Cookie","value":"have_used_live_control=true; audience_account_uuid=RzQwfjxhimKysJZ7aWrQBRrjZl9uu5NV; PHPSESSID=vibabbk0lpalrdsqueom6ls6rf; Hm_lvt_05f4960e2ae97d3522555e947098edd0=1560319233,1561012364,1561012582,1561342774; user_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Ik5jV1Q4azRJZW1ycDJCR01PbjlwY0xzMUhaUDcxUWI3In0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiTmNXVDhrNEllbXJwMkJHTU9uOXBjTHMxSFpQNzFRYjciLCJpYXQiOjE1NjE1MzEzMTcsImV4cCI6MTU2MTYxNzcxNywiaWQiOiJSelF3Zmp4aGltS3lzSlo3YVdyUUJScmpabDl1dTVOViIsImFjY291bnRfaWQiOjMyMiwibmFtZSI6InBlYW51dCIsInJvbGUiOiJ1c2VyIiwiZnJvbSI6Im9yaWdpbiIsImV4dHJhIjpbXSwic2Vzc2lvbiI6IjNweFBBMUxpMGlPNkFYUEs0MmE1bmxISkJjUlZidE1DIn0.bzgB_rjKWsz-8egYEoAEj6vFoNtOQW52vBl7EamoOu8j3zVfElZED4Ak8vw68u5xE6AGJ2lMFwOTXjFLp51JkQ; Hm_lpvt_05f4960e2ae97d3522555e947098edd0=1561532679","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"live_id","value":"2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha","description":"直播间id","type":"text"},{"key":"name","value":"\btestInstructors","description":"讲师名称","type":"text"},{"key":"password","value":"123456","description":"讲师\b进入直播间密码","type":"text"}]},"url":{"raw":"{{URL}}/console/index.php?c=instructor&a=setInstructor","host":["{{URL}}"],"path":["console","index.php"],"query":[{"key":"c","value":"instructor"},{"key":"a","value":"setInstructor"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Wed, 26 Jun 2019 08:22:07 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":1}"},{"id":"8b0dff52-2e40-4287-8308-f744c9d37c4c","name":"设置讲师","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{URL}}/console/index.php?c=instructor&a=setInstructor","host":["{{URL}}"],"path":["console","index.php"],"query":[{"key":"c","value":"instructor"},{"key":"a","value":"setInstructor"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Wed, 26 Jun 2019 08:28:34 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":1}"},{"id":"9579745e-f4a6-486b-ab8c-6490fcaaa104","name":"设置讲师","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Cookie","value":"have_used_live_control=true; audience_account_uuid=RzQwfjxhimKysJZ7aWrQBRrjZl9uu5NV; PHPSESSID=vibabbk0lpalrdsqueom6ls6rf; Hm_lvt_05f4960e2ae97d3522555e947098edd0=1560319233,1561012364,1561012582,1561342774; user_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Ik5jV1Q4azRJZW1ycDJCR01PbjlwY0xzMUhaUDcxUWI3In0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiTmNXVDhrNEllbXJwMkJHTU9uOXBjTHMxSFpQNzFRYjciLCJpYXQiOjE1NjE1MzEzMTcsImV4cCI6MTU2MTYxNzcxNywiaWQiOiJSelF3Zmp4aGltS3lzSlo3YVdyUUJScmpabDl1dTVOViIsImFjY291bnRfaWQiOjMyMiwibmFtZSI6InBlYW51dCIsInJvbGUiOiJ1c2VyIiwiZnJvbSI6Im9yaWdpbiIsImV4dHJhIjpbXSwic2Vzc2lvbiI6IjNweFBBMUxpMGlPNkFYUEs0MmE1bmxISkJjUlZidE1DIn0.bzgB_rjKWsz-8egYEoAEj6vFoNtOQW52vBl7EamoOu8j3zVfElZED4Ak8vw68u5xE6AGJ2lMFwOTXjFLp51JkQ; Hm_lpvt_05f4960e2ae97d3522555e947098edd0=1561532679","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"live_id","value":"2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha","description":"直播间id","type":"text"},{"key":"name","value":"\btestInstructor","description":"讲师名称","type":"text"},{"key":"password","value":"123456","description":"讲师\b进入直播间密码","type":"text"}]},"url":{"raw":"{{URL}}/console/index.php?c=instructor&a=setInstructor","host":["{{URL}}"],"path":["console","index.php"],"query":[{"key":"c","value":"instructor"},{"key":"a","value":"setInstructor"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Wed, 26 Jun 2019 08:25:25 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":1}"}],"_postman_id":"078da338-194d-4a18-b6dc-2b1785b1f0ad"},{"name":"获取频道讲师","id":"d5861798-52fe-4cb5-9190-37c47373f3df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Cookie","value":"have_used_live_control=true; audience_account_uuid=RzQwfjxhimKysJZ7aWrQBRrjZl9uu5NV; PHPSESSID=vibabbk0lpalrdsqueom6ls6rf; Hm_lvt_05f4960e2ae97d3522555e947098edd0=1560319233,1561012364,1561012582,1561342774; user_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Ik5jV1Q4azRJZW1ycDJCR01PbjlwY0xzMUhaUDcxUWI3In0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiTmNXVDhrNEllbXJwMkJHTU9uOXBjTHMxSFpQNzFRYjciLCJpYXQiOjE1NjE1MzEzMTcsImV4cCI6MTU2MTYxNzcxNywiaWQiOiJSelF3Zmp4aGltS3lzSlo3YVdyUUJScmpabDl1dTVOViIsImFjY291bnRfaWQiOjMyMiwibmFtZSI6InBlYW51dCIsInJvbGUiOiJ1c2VyIiwiZnJvbSI6Im9yaWdpbiIsImV4dHJhIjpbXSwic2Vzc2lvbiI6IjNweFBBMUxpMGlPNkFYUEs0MmE1bmxISkJjUlZidE1DIn0.bzgB_rjKWsz-8egYEoAEj6vFoNtOQW52vBl7EamoOu8j3zVfElZED4Ak8vw68u5xE6AGJ2lMFwOTXjFLp51JkQ; Hm_lpvt_05f4960e2ae97d3522555e947098edd0=1561532679","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"live_id","value":"2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha","type":"text"},{"key":"Cookie","value":"have_used_live_control=true; audience_account_uuid=RzQwfjxhimKysJZ7aWrQBRrjZl9uu5NV; PHPSESSID=vibabbk0lpalrdsqueom6ls6rf; Hm_lvt_05f4960e2ae97d3522555e947098edd0=1560319233,1561012364,1561012582,1561342774; user_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Ik5jV1Q4azRJZW1ycDJCR01PbjlwY0xzMUhaUDcxUWI3In0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiTmNXVDhrNEllbXJwMkJHTU9uOXBjTHMxSFpQNzFRYjciLCJpYXQiOjE1NjE1MzEzMTcsImV4cCI6MTU2MTYxNzcxNywiaWQiOiJSelF3Zmp4aGltS3lzSlo3YVdyUUJScmpabDl1dTVOViIsImFjY291bnRfaWQiOjMyMiwibmFtZSI6InBlYW51dCIsInJvbGUiOiJ1c2VyIiwiZnJvbSI6Im9yaWdpbiIsImV4dHJhIjpbXSwic2Vzc2lvbiI6IjNweFBBMUxpMGlPNkFYUEs0MmE1bmxISkJjUlZidE1DIn0.bzgB_rjKWsz-8egYEoAEj6vFoNtOQW52vBl7EamoOu8j3zVfElZED4Ak8vw68u5xE6AGJ2lMFwOTXjFLp51JkQ; Hm_lpvt_05f4960e2ae97d3522555e947098edd0=1561531383","type":"text"}]},"url":"{{URL}}/console/index.php?c=instructor&a=getInstructor","urlObject":{"path":["console","index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"instructor"},{"key":"a","value":"getInstructor"}],"variable":[]}},"response":[{"id":"1b42040f-c48d-4dfc-99c0-ee29c4fb2711","name":"获取频道讲师","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"live_id","value":"2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha","type":"text"}]},"url":{"raw":"{{URL}}/console/index.php?c=instructor&a=getInstructor","host":["{{URL}}"],"path":["console","index.php"],"query":[{"key":"c","value":"instructor"},{"key":"a","value":"getInstructor"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Wed, 26 Jun 2019 08:29:57 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"id\":13052,\"name\":\"\\btestInstructor\",\"password\":\"123456\",\"live_id\":\"2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha\",\"audience_id\":374098,\"created_at\":\"2019-06-26 15:05:38\",\"updated_at\":\"2019-06-26 16:28:34\",\"deleted_at\":null,\"access\":[9,10,11,12,27,28,30,31,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,13,14,15,20,16,81,82,87,88,89,90,91,96,98,99,100,101,102,103,104,105,106,107,112]}}"},{"id":"65c4322e-5186-4139-b553-790e05ec99fd","name":"获取频道讲师","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Cookie","value":"have_used_live_control=true; audience_account_uuid=RzQwfjxhimKysJZ7aWrQBRrjZl9uu5NV; PHPSESSID=vibabbk0lpalrdsqueom6ls6rf; Hm_lvt_05f4960e2ae97d3522555e947098edd0=1560319233,1561012364,1561012582,1561342774; user_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Ik5jV1Q4azRJZW1ycDJCR01PbjlwY0xzMUhaUDcxUWI3In0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiTmNXVDhrNEllbXJwMkJHTU9uOXBjTHMxSFpQNzFRYjciLCJpYXQiOjE1NjE1MzEzMTcsImV4cCI6MTU2MTYxNzcxNywiaWQiOiJSelF3Zmp4aGltS3lzSlo3YVdyUUJScmpabDl1dTVOViIsImFjY291bnRfaWQiOjMyMiwibmFtZSI6InBlYW51dCIsInJvbGUiOiJ1c2VyIiwiZnJvbSI6Im9yaWdpbiIsImV4dHJhIjpbXSwic2Vzc2lvbiI6IjNweFBBMUxpMGlPNkFYUEs0MmE1bmxISkJjUlZidE1DIn0.bzgB_rjKWsz-8egYEoAEj6vFoNtOQW52vBl7EamoOu8j3zVfElZED4Ak8vw68u5xE6AGJ2lMFwOTXjFLp51JkQ; Hm_lpvt_05f4960e2ae97d3522555e947098edd0=1561532679","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[{"key":"live_id","value":"2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha","type":"text"},{"key":"Cookie","value":"have_used_live_control=true; audience_account_uuid=RzQwfjxhimKysJZ7aWrQBRrjZl9uu5NV; PHPSESSID=vibabbk0lpalrdsqueom6ls6rf; Hm_lvt_05f4960e2ae97d3522555e947098edd0=1560319233,1561012364,1561012582,1561342774; user_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6Ik5jV1Q4azRJZW1ycDJCR01PbjlwY0xzMUhaUDcxUWI3In0.eyJpc3MiOiJ4aWFrZTEubXVkdS50diIsImF1ZCI6InhpYWtlMS5tdWR1LnR2IiwianRpIjoiTmNXVDhrNEllbXJwMkJHTU9uOXBjTHMxSFpQNzFRYjciLCJpYXQiOjE1NjE1MzEzMTcsImV4cCI6MTU2MTYxNzcxNywiaWQiOiJSelF3Zmp4aGltS3lzSlo3YVdyUUJScmpabDl1dTVOViIsImFjY291bnRfaWQiOjMyMiwibmFtZSI6InBlYW51dCIsInJvbGUiOiJ1c2VyIiwiZnJvbSI6Im9yaWdpbiIsImV4dHJhIjpbXSwic2Vzc2lvbiI6IjNweFBBMUxpMGlPNkFYUEs0MmE1bmxISkJjUlZidE1DIn0.bzgB_rjKWsz-8egYEoAEj6vFoNtOQW52vBl7EamoOu8j3zVfElZED4Ak8vw68u5xE6AGJ2lMFwOTXjFLp51JkQ; Hm_lpvt_05f4960e2ae97d3522555e947098edd0=1561531383","type":"text","disabled":true}]},"url":{"raw":"{{URL}}/console/index.php?c=instructor&a=getInstructor","host":["{{URL}}"],"path":["console","index.php"],"query":[{"key":"c","value":"instructor"},{"key":"a","value":"getInstructor"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Wed, 26 Jun 2019 08:29:57 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":{\"id\":13052,\"name\":\"\\btestInstructor\",\"password\":\"123456\",\"live_id\":\"2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha\",\"audience_id\":374098,\"created_at\":\"2019-06-26 15:05:38\",\"updated_at\":\"2019-06-26 16:28:34\",\"deleted_at\":null,\"access\":[9,10,11,12,27,28,30,31,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,13,14,15,20,16,81,82,87,88,89,90,91,96,98,99,100,101,102,103,104,105,106,107,112]}}"}],"_postman_id":"d5861798-52fe-4cb5-9190-37c47373f3df"},{"name":"讲师登陆链接","id":"7bbf96b3-951d-4108-91a0-a3f3871c6fc6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{URL}}/index.php?id=2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha&a=instructorlogin&c=index","urlObject":{"path":["index.php"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>\b频道id</p>\n","type":"text/plain"},"key":"id","value":"2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha"},{"key":"a","value":"instructorlogin"},{"key":"c","value":"index"}],"variable":[]}},"response":[{"id":"16cfec75-c4f4-4a34-b667-e3f31c673fb8","name":"讲师登陆链接","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{URL}}/index.php?id=2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha&a=instructorlogin&c=index","host":["{{URL}}"],"path":["index.php"],"query":[{"key":"id","value":"2oVKUfW5NJ0d6Cr01jcPXSIA5839Buha","description":"\b频道id"},{"key":"a","value":"instructorlogin"},{"key":"c","value":"index"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Wed, 26 Jun 2019 10:23:28 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"<!DOCTYPE html>\n<html>\n    <head>\n        <meta charset=\"utf-8\">\n        <title>讲师登录</title>\n        <!--IE8 Standards Mode-->\n        <meta http-equiv=\"X-UA-Compatible\" content=\"IE=EDGE\"/>\n    </head>\n    <body>\n        <script>\n    var initData = {\"is_customized_domain\":true,\"rtmp_pull\":\"rtmp:\\/\\/xiake1-live.mudu.tv\\/watch\\/\",\"hls_pull\":\"https:\\/\\/xiake1-live.mudu.tv\\/watch\\/\",\"mqtt_host\":\"xiake.mudu.tv\",\"mqtt_websocket\":\"9001\",\"platform\":\"public\",\"default_sys_name\":\"\\u76ee\\u7779\\u6709\\u8bfe\",\"default_web_host_name\":\"xiake1.mudu.tv\",\"default_rtmp_host_name\":\"xiake1-rtmp.mudu.tv\",\"player\":\"1\"};\ninitData.timeDiff = new Date() - 1561544608162;\n    window.NAT_SERVERS = ['wss://msg-ws.myun.tv'];\n    initData.login_proof = \"11\";\n    initData.login_verify = \"01\";\n    initData.favicon = \"\\/\\/static100.mudu.tv\\/static\\/files\\/img\\/console\\/brand\\/bigLogo.png\";\n    initData.version = 1;\n</script>\n        <div id=\"instructorLogin\"></div>\n        <script src=\"//static100.mudu.tv/static/files/global_modules/pollify/bluebird.min.js\"></script>\n        <script src=\"//static100.mudu.tv/static/files/global_modules/pollify/es5-shim.min.js\"></script>\n        <script src=\"//static100.mudu.tv/static/files/global_modules/pollify/polyfill.min.js\"></script>\n        <script src=\"//static100.mudu.tv/static/files/dll/vendor_5fd20bd3b9cf8f781541.js\"></script>\n        <script src=\"/assets/dist/antd_css.970f81d4e74d3d0ef686.entry.js\"></script>\n        <script src=\"/assets/dist/instructor_login_entry.970f81d4e74d3d0ef686.entry.js\"></script>\n    </body>\n</html>"}],"_postman_id":"7bbf96b3-951d-4108-91a0-a3f3871c6fc6"},{"name":"讲师登录获取token","id":"6c0e57e1-37d9-4dff-b322-27774a36b405","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"test","description":"<p>讲师登录名</p>\n","type":"text"},{"key":"password","value":"123456","description":"<p>密码</p>\n","type":"text"},{"key":"live_id","value":"52h7b3YeYukpJRnO3qULfL7OgIhtLBzn","description":"<p>直播间ID</p>\n","type":"text"}]},"url":"{{URL}}/index.php?c=session&a=instructorLogin","urlObject":{"path":["index.php"],"host":["{{URL}}"],"query":[{"key":"c","value":"session"},{"key":"a","value":"instructorLogin"}],"variable":[]}},"response":[{"id":"1a7521bb-d5b5-4597-8319-8cbe9c00f3b2","name":"讲师登录获取token","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"test","description":"讲师登录名","type":"text"},{"key":"password","value":"123456","description":"密码","type":"text"},{"key":"live_id","value":"52h7b3YeYukpJRnO3qULfL7OgIhtLBzn","description":"直播间ID","type":"text"}]},"url":{"raw":"{{URL}}/index.php?c=session&a=instructorLogin","host":["{{URL}}"],"path":["index.php"],"query":[{"key":"c","value":"session"},{"key":"a","value":"instructorLogin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.1"},{"key":"Date","value":"Wed, 11 Mar 2020 13:27:26 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"user_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6ImdQSGtyTmV6TDdQNlBnQUJKMHdDSmw2YVE4bGxsakp6In0.eyJpc3MiOiJ5b3VrZS5tdWR1LnR2IiwiYXVkIjoieW91a2UubXVkdS50diIsImp0aSI6ImdQSGtyTmV6TDdQNlBnQUJKMHdDSmw2YVE4bGxsakp6IiwiaWF0IjoxNTgzOTMzMjQ2LCJleHAiOjE1ODQwMTk2NDYsImlkIjoxOTM2LCJhY2NvdW50X2lkIjoxNDAzLCJuYW1lIjoidGVzdCIsInJvbGUiOiJpbnN0cnVjdG9yIiwiZnJvbSI6Im9yaWdpbiIsImV4dHJhIjpbXSwic2Vzc2lvbiI6IjJkVUhpR05QaWF3eHF0UG8xQU5HS1lyREZCVVJ2ZkQ4In0.rEEOzaggjkMQiJu5bHopuvcAM3mBCEYloCNAAhz5_svkowx3sZCWAave3sqceENZcgQCrv5IDtS0_OGkBRpmlQ; expires=Thu, 12-Mar-2020 13:27:26 GMT; Max-Age=86400; path=/"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6ImdQSGtyTmV6TDdQNlBnQUJKMHdDSmw2YVE4bGxsakp6In0.eyJpc3MiOiJ5b3VrZS5tdWR1LnR2IiwiYXVkIjoieW91a2UubXVkdS50diIsImp0aSI6ImdQSGtyTmV6TDdQNlBnQUJKMHdDSmw2YVE4bGxsakp6IiwiaWF0IjoxNTgzOTMzMjQ2LCJleHAiOjE1ODQwMTk2NDYsImlkIjoxOTM2LCJhY2NvdW50X2lkIjoxNDAzLCJuYW1lIjoidGVzdCIsInJvbGUiOiJpbnN0cnVjdG9yIiwiZnJvbSI6Im9yaWdpbiIsImV4dHJhIjpbXSwic2Vzc2lvbiI6IjJkVUhpR05QaWF3eHF0UG8xQU5HS1lyREZCVVJ2ZkQ4In0.rEEOzaggjkMQiJu5bHopuvcAM3mBCEYloCNAAhz5_svkowx3sZCWAave3sqceENZcgQCrv5IDtS0_OGkBRpmlQ\"}"},{"id":"84713db2-5497-443e-ab97-922c9d93142b","name":"讲师登录获取token","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"test","description":"讲师登录名","type":"text"},{"key":"password","value":"123456","description":"密码","type":"text"},{"key":"live_id","value":"52h7b3YeYukpJRnO3qULfL7OgIhtLBzn","description":"直播间ID","type":"text"}]},"url":{"raw":"{{URL}}/index.php?c=session&a=instructorLogin","host":["{{URL}}"],"path":["index.php"],"query":[{"key":"c","value":"session"},{"key":"a","value":"instructorLogin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.1"},{"key":"Date","value":"Wed, 11 Mar 2020 13:27:26 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"user_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6ImdQSGtyTmV6TDdQNlBnQUJKMHdDSmw2YVE4bGxsakp6In0.eyJpc3MiOiJ5b3VrZS5tdWR1LnR2IiwiYXVkIjoieW91a2UubXVkdS50diIsImp0aSI6ImdQSGtyTmV6TDdQNlBnQUJKMHdDSmw2YVE4bGxsakp6IiwiaWF0IjoxNTgzOTMzMjQ2LCJleHAiOjE1ODQwMTk2NDYsImlkIjoxOTM2LCJhY2NvdW50X2lkIjoxNDAzLCJuYW1lIjoidGVzdCIsInJvbGUiOiJpbnN0cnVjdG9yIiwiZnJvbSI6Im9yaWdpbiIsImV4dHJhIjpbXSwic2Vzc2lvbiI6IjJkVUhpR05QaWF3eHF0UG8xQU5HS1lyREZCVVJ2ZkQ4In0.rEEOzaggjkMQiJu5bHopuvcAM3mBCEYloCNAAhz5_svkowx3sZCWAave3sqceENZcgQCrv5IDtS0_OGkBRpmlQ; expires=Thu, 12-Mar-2020 13:27:26 GMT; Max-Age=86400; path=/"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\"code\":200,\"msg\":\"success\",\"data\":\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6ImdQSGtyTmV6TDdQNlBnQUJKMHdDSmw2YVE4bGxsakp6In0.eyJpc3MiOiJ5b3VrZS5tdWR1LnR2IiwiYXVkIjoieW91a2UubXVkdS50diIsImp0aSI6ImdQSGtyTmV6TDdQNlBnQUJKMHdDSmw2YVE4bGxsakp6IiwiaWF0IjoxNTgzOTMzMjQ2LCJleHAiOjE1ODQwMTk2NDYsImlkIjoxOTM2LCJhY2NvdW50X2lkIjoxNDAzLCJuYW1lIjoidGVzdCIsInJvbGUiOiJpbnN0cnVjdG9yIiwiZnJvbSI6Im9yaWdpbiIsImV4dHJhIjpbXSwic2Vzc2lvbiI6IjJkVUhpR05QaWF3eHF0UG8xQU5HS1lyREZCVVJ2ZkQ4In0.rEEOzaggjkMQiJu5bHopuvcAM3mBCEYloCNAAhz5_svkowx3sZCWAave3sqceENZcgQCrv5IDtS0_OGkBRpmlQ\"}"}],"_postman_id":"6c0e57e1-37d9-4dff-b322-27774a36b405"},{"name":"跳转讲师控制台","id":"5629b134-8109-4f46-a82a-cf1cacd5b063","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{URL}}/console/index.php?a=console&c=index&role=instructor&id=52h7b3YeYukpJRnO3qULfL7OgIhtLBzn&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6ImdQSGtyTmV6TDdQNlBnQUJKMHdDSmw2YVE4bGxsakp6In0.eyJpc3MiOiJ5b3VrZS5tdWR1LnR2IiwiYXVkIjoieW91a2UubXVkdS50diIsImp0aSI6ImdQSGtyTmV6TDdQNlBnQUJKMHdDSmw2YVE4bGxsakp6IiwiaWF0IjoxNTgzOTMzMjQ2LCJleHAiOjE1ODQwMTk2NDYsImlkIjoxOTM2LCJhY2NvdW50X2lkIjoxNDAzLCJuYW1lIjoidGVzdCIsInJvbGUiOiJpbnN0cnVjdG9yIiwiZnJvbSI6Im9yaWdpbiIsImV4dHJhIjpbXSwic2Vzc2lvbiI6IjJkVUhpR05QaWF3eHF0UG8xQU5HS1lyREZCVVJ2ZkQ4In0.rEEOzaggjkMQiJu5bHopuvcAM3mBCEYloCNAAhz5_svkowx3sZCWAave3sqceENZcgQCrv5IDtS0_OGkBRpmlQ#/live-studio/livecontrol/sNpQkiYMLNRz991MuuheN9ioWlKyMf4v","description":"<ul>\n<li><p><strong>备注</strong> <code>#/live-studio/livecontrol/sNpQkiYMLNRz991MuuheN9ioWlKyMf4v</code></p>\n</li>\n<li><p><code>#/live-studio/livecontrol/</code>  是路由参数无需修改</p>\n</li>\n<li><p><code>sNpQkiYMLNRz991MuuheN9ioWlKyMf4v</code> 为对应的直播间ID，根据实际直播间ID修改</p>\n</li>\n</ul>\n","urlObject":{"path":["console","index.php"],"hash":"/live-studio/livecontrol/sNpQkiYMLNRz991MuuheN9ioWlKyMf4v","host":["{{URL}}"],"query":[{"description":{"content":"<p>路由</p>\n","type":"text/plain"},"key":"a","value":"console"},{"description":{"content":"<p>路由</p>\n","type":"text/plain"},"key":"c","value":"index"},{"description":{"content":"<p>固定的讲师参数(无需修改)</p>\n","type":"text/plain"},"key":"role","value":"instructor"},{"description":{"content":"<p>直播间id</p>\n","type":"text/plain"},"key":"id","value":"52h7b3YeYukpJRnO3qULfL7OgIhtLBzn"},{"description":{"content":"<p>讲师登录获取token</p>\n","type":"text/plain"},"key":"token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6ImdQSGtyTmV6TDdQNlBnQUJKMHdDSmw2YVE4bGxsakp6In0.eyJpc3MiOiJ5b3VrZS5tdWR1LnR2IiwiYXVkIjoieW91a2UubXVkdS50diIsImp0aSI6ImdQSGtyTmV6TDdQNlBnQUJKMHdDSmw2YVE4bGxsakp6IiwiaWF0IjoxNTgzOTMzMjQ2LCJleHAiOjE1ODQwMTk2NDYsImlkIjoxOTM2LCJhY2NvdW50X2lkIjoxNDAzLCJuYW1lIjoidGVzdCIsInJvbGUiOiJpbnN0cnVjdG9yIiwiZnJvbSI6Im9yaWdpbiIsImV4dHJhIjpbXSwic2Vzc2lvbiI6IjJkVUhpR05QaWF3eHF0UG8xQU5HS1lyREZCVVJ2ZkQ4In0.rEEOzaggjkMQiJu5bHopuvcAM3mBCEYloCNAAhz5_svkowx3sZCWAave3sqceENZcgQCrv5IDtS0_OGkBRpmlQ"}],"variable":[]}},"response":[{"id":"fbf2af7f-c458-4536-bc94-dcf800098757","name":"跳转讲师控制台","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{URL}}/console/index.php?a=instructorRewrite&c=index&id=52h7b3YeYukpJRnO3qULfL7OgIhtLBzn&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6ImdQSGtyTmV6TDdQNlBnQUJKMHdDSmw2YVE4bGxsakp6In0.eyJpc3MiOiJ5b3VrZS5tdWR1LnR2IiwiYXVkIjoieW91a2UubXVkdS50diIsImp0aSI6ImdQSGtyTmV6TDdQNlBnQUJKMHdDSmw2YVE4bGxsakp6IiwiaWF0IjoxNTgzOTMzMjQ2LCJleHAiOjE1ODQwMTk2NDYsImlkIjoxOTM2LCJhY2NvdW50X2lkIjoxNDAzLCJuYW1lIjoidGVzdCIsInJvbGUiOiJpbnN0cnVjdG9yIiwiZnJvbSI6Im9yaWdpbiIsImV4dHJhIjpbXSwic2Vzc2lvbiI6IjJkVUhpR05QaWF3eHF0UG8xQU5HS1lyREZCVVJ2ZkQ4In0.rEEOzaggjkMQiJu5bHopuvcAM3mBCEYloCNAAhz5_svkowx3sZCWAave3sqceENZcgQCrv5IDtS0_OGkBRpmlQ","host":["{{URL}}"],"path":["console","index.php"],"query":[{"key":"a","value":"instructorRewrite","description":"路由"},{"key":"c","value":"index","description":"路由"},{"key":"id","value":"52h7b3YeYukpJRnO3qULfL7OgIhtLBzn","description":"直播间id"},{"key":"token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImp0aSI6ImdQSGtyTmV6TDdQNlBnQUJKMHdDSmw2YVE4bGxsakp6In0.eyJpc3MiOiJ5b3VrZS5tdWR1LnR2IiwiYXVkIjoieW91a2UubXVkdS50diIsImp0aSI6ImdQSGtyTmV6TDdQNlBnQUJKMHdDSmw2YVE4bGxsakp6IiwiaWF0IjoxNTgzOTMzMjQ2LCJleHAiOjE1ODQwMTk2NDYsImlkIjoxOTM2LCJhY2NvdW50X2lkIjoxNDAzLCJuYW1lIjoidGVzdCIsInJvbGUiOiJpbnN0cnVjdG9yIiwiZnJvbSI6Im9yaWdpbiIsImV4dHJhIjpbXSwic2Vzc2lvbiI6IjJkVUhpR05QaWF3eHF0UG8xQU5HS1lyREZCVVJ2ZkQ4In0.rEEOzaggjkMQiJu5bHopuvcAM3mBCEYloCNAAhz5_svkowx3sZCWAave3sqceENZcgQCrv5IDtS0_OGkBRpmlQ","description":"讲师登录获取token"}]}},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Server","value":"nginx/1.14.1"},{"key":"Date","value":"Wed, 11 Mar 2020 13:43:04 GMT"},{"key":"Content-Type","value":"text/html;charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"<!DOCTYPE html>\n<html>\n    <head>\n        <meta charset=\"utf-8\">\n        <title>目睹有课</title>\n        <script>\n    var _hmt = _hmt || [];\n    (function() {\n        var hm = document.createElement(\"script\");\n        hm.src = \"https://hm.baidu.com/hm.js?05f4960e2ae97d3522555e947098edd0\";\n        var s = document.getElementsByTagName(\"script\")[0];\n        s.parentNode.insertBefore(hm, s);\n    })();\n</script>\n        <!--IE8 Standards Mode-->\n        <meta http-equiv=\"X-UA-Compatible\" content=\"IE=EDGE\"/>\n    </head>\n    <body>\n        <div id=\"app\"></div>\n        <script>\nwindow.NAT_SERVERS = ['wss://youke-ws-nats.myun.tv'];\nvar initData = {\"is_customized_domain\":false,\"rtmp_pull\":\"rtmp:\\/\\/youkepull01.mudu.tv\\/watch\\/\",\"hls_pull\":\"https:\\/\\/youkepull01.mudu.tv\\/watch\\/\",\"mqtt_host\":\"youke.mudu.tv\",\"mqtt_websocket\":\"9001\",\"platform\":\"public\",\"default_sys_name\":\"\\u76ee\\u7779\\u6709\\u8bfe\",\"default_web_host_name\":\"youke.mudu.tv\",\"default_rtmp_host_name\":\"youkepush01.mudu.tv\",\"player\":\"1\"};\ninitData.timeDiff = new Date() - 1583934184137;\n    initData.favicon = null;\n    initData.rtmp_push = \"rtmp:\\/\\/youkepush01.mudu.tv\\/watch\\/\"</script>\n        <script src=\"//static100.mudu.tv/static/files/global_modules/pollify/bluebird.min.js\"></script>\n        <script src=\"//static100.mudu.tv/static/files/global_modules/pollify/es5-shim.min.js\"></script>\n        <script src=\"//static100.mudu.tv/static/files/dll/vendor_5fd20bd3b9cf8f781541.js\"></script>\n        <script src=\"//static.mudu.tv/static/mrtc-js-sdk/1.6.1/mrtc-js-sdk.js\"></script>\n        <script src=\"//static100.mudu.tv/static/files/global_modules/firstname/pinyin_dict_firstletter.js\"></script>\n        <script src=\"//static100.mudu.tv/static/files/global_modules/firstname/pinyin_dict_notone.js\"></script>\n        <script src=\"//at.alicdn.com/t/font_309823_mh8ih38pga.js\"></script>\n        <script src='//static100.mudu.tv/static/files/global_modules/jsPDF/html2canvas.min.js'></script>\n        <script src='//static100.mudu.tv/static/files/global_modules/jsPDF/jspdf.min.js'></script>\n        <script src=\"//static100.mudu.tv/static/files/global_modules/echarts.min.js\"></script>\n        <script src=\"//static100.mudu.tv/assets/1583846214/dist/antd_css.entry.js\"></script>\n        <script src=\"//static100.mudu.tv/assets/1583846214/dist/console_entry.entry.js\"></script>\n    </body>\n</html>"}],"_postman_id":"5629b134-8109-4f46-a82a-cf1cacd5b063"}],"id":"b886ce1b-41e8-475b-95fd-b6d3faee54a0","event":[{"listen":"prerequest","script":{"id":"cf2a8e7d-c6aa-4534-bcef-4112f4be420d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8d8baeea-2875-48b1-90eb-634b7bb19e94","type":"text/javascript","exec":[""]}}],"_postman_id":"b886ce1b-41e8-475b-95fd-b6d3faee54a0","description":""}],"event":[{"listen":"prerequest","script":{"id":"3507fe31-3740-4825-aa6d-f30704ac2b35","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"594d15dd-b9c5-46ad-bd4c-a382f94be966","type":"text/javascript","exec":[""]}}]}