数据较差文章批量下架
<p><strong>简要描述:</strong> </p>
<ul>
<li>数据较差文章批量下架</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://xx.com/api/cancel_inferior_articles</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST </li>
</ul>
<p><strong>其他说明</strong> </p>
<ol>
<li>接口请求频率要大于 1.5s / 次</li>
<li>一次下架的文章 id 不要超过 500 个</li>
</ol>
<p><strong>参数:</strong> </p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">article_ids</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>文章的 id 的 json格式。例子: ["123", "456"]</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code> {
"msg": "success",
"data": [
{
"article_id": "123",
"msg": "success"
},
{
"article_id": "456",
"msg": "该文章非上架状态,无法操作"
}
],
"code": 1,
"state": true
}</code></pre>
<p><strong>返回参数说明</strong> </p>
<ul>
<li>暂无</li>
</ul>