API | 操作描述 |
用于提交一个文本审核任务 | |
用于查询指定的文本审核任务 |
CosResult CosAPI::CreateTextAuditingJob(const CreateTextAuditingJobReq& req, CreateTextAuditingJobResp* resp);
qcloud_cos::CosConfig config("./config.json");qcloud_cos::CosAPI cos(config);std::string bucket_name = "examplebucket-1250000000";std::string object_name = "test.txt";CreateTextAuditingJobReq req(bucket_name);CreateTextAuditingJobResp resp;// 添加请求参数 参数详情请见api接口文档req.SetObject(object_name);req.SetBizType("b81d45f94b91a683255e9a9506f45a11");// req.SetDetectType("Porn,Ads");// 调用接口,获取任务响应对象CosResult result = cos.CreateTextAuditingJob(req, &resp);if (result.IsSucc()) {// 创建审核任务成功,可以调用 CreateTextAuditingJobResp 的成员函数} else {// 创建审核任务失败,可以调用 CosResult 的成员函数输出错误信息}
参数 | 参数描述 | 类型 | 是否必填 |
req | CreateTextAuditing 操作的请求 | CreateTextAuditingJobReq | 是 |
resp | CreateTextAuditing 操作的响应 | CreateTextAuditingJobResp | 是 |
// 设置执行操作的bucketvoid SetBucketName(const std::string& bucket_name);// 设置input需要审核的视频void SetInput(const AuditingInput& input);// 设置审核配置规则void SetConf(const Conf& conf);// conf// 表示审核策略的唯一标识,您可以通过控制台上的审核策略页面,配置您希望审核的场景,如涉黄、广告、违法违规等,配置指引: 设置公共审核策略。// 您可以在控制台上获取到 BizType。BizType 填写时,此条审核请求将按照该审核策略中配置的场景进行审核。void SetBizType(const std::string& biz_type);// 审核的场景类型,有效值:Porn(涉黄)、Ads(广告)等,可以传入多种类型,不同类型以逗号分隔,例如:Porn,Ads。如您有更多场景的审核需要,请使用 BizType 参数。void SetDetectType(const std::string& detect_type);// 回调地址,以http://或者https://开头的地址。void SetCallBack(const std::string& callback);// 回调内容的结构,有效值:Simple(回调内容包含基本信息)、Detail(回调内容包含详细信息)。默认为 Simple。void SetCallBackVersion(const std::string& callback_version);// input// 当前 COS 存储桶中的文本文件名称,例如在目录 test 中的文件 test.txt,则文件名称为 test/test.txt,文本文件仅支持 UTF8 编码和 GBK 编码的内容,且文件大小不得超过1MB。void SetObject(const std::string& object);// 文本文件的完整链接,例如:https://www.test.com/test.txt。void SetUrl(const std::string& url);// 该字段在审核结果中会返回原始内容,长度限制为512字节。您可以使用该字段对待审核的数据进行唯一业务标识。void SetDataId(const std::string& data_id);// 用户业务字段。void SetUserInfo(const UserInfo& user_info);// 当传入的内容为纯文本信息,需要先经过 base64 编码,文本编码前的原文长度不能超过10000个 UTF8 编码字符。若超出长度限制,接口将会报错。void SetContent(const std::string& content) { m_input.SetContent(content); }
// 获取API请求执行返回的任务详情TextAuditingJobsDetail GetJobsDetail();// 获取API请求的透传IDstd::string GetRequestId();
CosResult DescribeTextAuditingJob(const DescribeTextAuditingJobReq& req, DescribeTextAuditingJobResp* resp);
qcloud_cos::CosConfig config("./config.json");qcloud_cos::CosAPI cos(config);std::string bucket_name = "examplebucket-1250000000";DescribeTextAuditingJobReq req(bucket_name);DescribeTextAuditingJobResp resp;// 添加请求参数 参数详情请见api接口文档req.SetJobId("aab1ca9fc8a3ed11ea834c525400863904");// 调用接口,获取任务响应对象CosResult result = cos.DescribeTextAuditingJob(req, &resp);if (result.IsSucc()) {// 查询审核任务成功,可以调用 DescribeTextAuditingJobResp 的成员函数} else {// 查询审核任务失败,可以调用 CosResult 的成员函数输出错误信息}
参数 | 参数描述 | 类型 | 是否必填 |
req | DescribeTextAuditingJob 操作的请求 | DescribeTextAuditingJobReq | 是 |
resp | DescribeTextAuditingJob 操作的响应 | DescribeTextAuditingJobResp | 是 |
// 设置执行操作的bucketvoid SetBucketName(const std::string& bucket_name);// 设置查询的审核任务IDvoid SetJobId(const std::string& job_id);
// 获取API请求执行返回的任务详情TextAuditingJobsDetail GetJobsDetail();// 获取API请求的透传IDstd::string GetRequestId();
本页内容是否解决了您的问题?