注意:以下文档只适用于TOP接口,请谨慎使用!

文档中心 > API类目 > 书旗内容文巢

alibaba.shuqi.original.backend.plagiarism.aduit.loginfo (作弊作品日志列表)

作弊作品日志列表

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
book_id Number 必须 222 原创线下书籍BID
page Number 可选 1 页数
page_size Number 可选 20 每页数据条数

响应参数

名称 类型 示例值 描述
result CommonResponse result
  • └ state
  • Number
  • 200
  • 状态码
  • └ message
  • String
  • ok
  • message
  • data
  • CheatBookLogResp
  • data
  • └ page
  • Number
  • 1
  • 页码
  • └ count
  • Number
  • 100
  • 总条数
  • list
  • Item []
  • list
  • └ operate_type
  • Number
  • 0
  • 0审核 1修改 2导入检测 3导入作弊书籍
  • └ review_time
  • String
  • 2024-11-18 15:44:55
  • 进审时间
  • └ review_chapter_num
  • Number
  • 10
  • 进审章节数
  • └ black_list_type
  • String
  • IP,QQ
  • 黑名单类型
  • └ plagiarism_result
  • Number
  • 0
  • 抄袭检测结果 -2空白 -1未检测 0未检测出重复 1存在重复
  • └ cheat_result
  • Number
  • 1
  • 是否作弊 0空白 1确认存在作弊 2确认未作弊
  • └ is_off_shelf
  • Number
  • 2
  • 人工操作下架状态 -1空白 0否 1否 2是
  • └ operator
  • String
  • 操作人
  • 操作人
  • └ operator_reason
  • String
  • 操作原因
  • 操作原因
  • └ operator_time
  • String
  • 2024-11-18 15:44:55
  • 操作时间

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaShuqiOriginalBackendPlagiarismAduitLoginfoRequest req = new AlibabaShuqiOriginalBackendPlagiarismAduitLoginfoRequest();
req.setBookId(222L);
req.setPage(1L);
req.setPageSize(20L);
AlibabaShuqiOriginalBackendPlagiarismAduitLoginfoResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_shuqi_original_backend_plagiarism_aduit_loginfo_response>
    <result>
        <state>200</state>
        <message>ok</message>
        <data>
            <page>1</page>
            <count>100</count>
            <list>
                <item>
                    <operate_type>0</operate_type>
                    <review_time>2024-11-18 15:44:55</review_time>
                    <review_chapter_num>10</review_chapter_num>
                    <black_list_type>IP,QQ</black_list_type>
                    <plagiarism_result>0</plagiarism_result>
                    <cheat_result>1</cheat_result>
                    <is_off_shelf>2</is_off_shelf>
                    <operator>操作人</operator>
                    <operator_reason>操作原因</operator_reason>
                    <operator_time>2024-11-18 15:44:55</operator_time>
                </item>
            </list>
        </data>
    </result>
</alibaba_shuqi_original_backend_plagiarism_aduit_loginfo_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部