API | Description |
Submits a file moderation job. | |
Queries the result of a specified file moderation job. |
"""Test the CI's API for moderating file content"""# Create a COS client# Recognize a file in COSresponse = client.ci_auditing_document_submit(Bucket=bucket_name,DetectType=CiDetectType.PORN | CiDetectType.ADS,Url='https://www.test.com/sss.docx',Type='docx',)print response
ci_auditing_document_submit
function is called. Specific request parameters are as follows:Parameter | Description | Type | Required |
Bucket | Bucket name. | String | Yes |
Key | Object name, such as picture.jpg . | String | No |
DetectType | Moderation type. Valid values: CiDetectType.PORN (pornography), CiDetectType.ADS (advertising). You can select multiple types. For example, CiDetectType.PORN | CiDetectType.ADS indicates to moderate the file for pornographic and advertising information. If you need more moderation scenes, use the BizType parameter. | enum | Yes |
Url | A file URL that is not in COS can be directly used for moderation. | String | No |
Type | File type. If this parameter is not specified, the file extension will be used as the type by default, such as DOC, DOCX, PPT, and PPTX. If the file has no extension, this field must be specified; otherwise, moderation will fail. | String | No |
Callback | Callback address, which must start with http:// or https:// . | String | No |
BizType | Unique identifier of the moderation policy. You can configure the scenes you want to moderate on the moderation policy page in the console, such as pornographic, adverting, and illegal information. For configuration guidelines, see Setting Public Moderation Policy. You can get BizType in the console. If BizType is specified, the moderation request will perform moderation based on the scenes configured in the moderation policy. If BizType is not specified, the default moderation policy will be used automatically. | String | No |
UserInfo | Business field. For details on parameters that can be passed in, see the UserInfo field in Submitting File Moderation Job. | Dict | No |
DataId | This field will return the original content in the moderation result, which can contain up to 512 bytes. You can use this field to uniquely identify the data to be moderated in your business. | String | No |
ci_auditing_document_submit
function will convert the XML returned in the API into a dict
value. For specific response parameters, see Submitting File Moderation Job."""Test the CI's API for querying moderation job result"""# Create a COS client# Query the moderation resultresponse = client.ci_auditing_document_query(Bucket='bucket',JobID='v11122zxxxazzz')print response
ci_auditing_document_query
function is called. Specific request parameters are as follows:Parameter | Description | Type | Required |
Bucket | Bucket name. | String | Yes |
JobID | Moderation job ID. | String | Yes |
ci_auditing_document_query
function will convert the XML returned in the API into a dict
value. For specific response parameters, see Querying File Moderation Job Result.
Was this page helpful?