API | 操作描述 |
用于提交一个网页审核任务 | |
用于查询指定的网页审核任务 |
CosResult CosAPI::CreateWebPageAuditingJob(const CreateWebPageAuditingJobReq& req, CreateWebPageAuditingJobResp* resp);
qcloud_cos::CosConfig config("./config.json");qcloud_cos::CosAPI cos(config);std::string bucket_name = "examplebucket-1250000000";std::string url = "http://test.com";CreateWebPageAuditingJobReq req(bucket_name);CreateWebPageAuditingJobResp resp;// 添加请求参数 参数详情请见api接口文档req.SetUrl(url);req.SetDetectType("Porn,Ads");// 调用接口,获取任务响应对象CosResult result = cos.CreateWebPageAuditingJob(req, &resp);if (result.IsSucc()) {// 创建审核任务成功,可以调用 CreateWebPageAuditingJobResp 的成员函数} else {// 创建审核任务失败,可以调用 CosResult 的成员函数输出错误信息}
参数 | 参数描述 | 类型 | 是否必填 |
req | CreateWebPageAuditing 操作的请求 | CreateWebPageAuditingJobReq | 是 |
resp | CreateWebPageAuditing 操作的响应 | CreateWebPageAuditingJobResp | 是 |
// 设置执行操作的bucketvoid SetBucketName(const std::string& bucket_name);// 设置input需要审核的视频void SetInput(const AuditingInput& input);// 设置审核配置规则void SetConf(const Conf& conf);// conf// 审核的场景类型,有效值:Porn(涉黄)、Ads(广告),可以传入多种类型,不同类型以逗号分隔,例如:Porn,Ads。void SetDetectType(const std::string& detect_type);// 回调地址,以http://或者https://开头的地址。void SetCallBack(const std::string& callback);// 指定是否需要高亮展示网页内的违规文本,查询及回调结果时会根据此参数决定是否返回高亮展示的 html 内容。取值为 true 或者 false,默认为 false。void SetReturnHighligthHtml(const bool return_highlight_html);// input// 网页文件的链接地址,例如 http://www.test.com。void SetUrl(const std::string& url);// 该字段在审核结果中会返回原始内容,长度限制为512字节。您可以使用该字段对待审核的数据进行唯一业务标识。void SetDataId(const std::string& data_id);// 用户业务字段。void SetUserInfo(const UserInfo& user_info);
// 获取API请求执行返回的任务详情WebPageAuditingJobsDetail GetJobsDetail();// 获取API请求的透传IDstd::string GetRequestId();
CosResult DescribeWebPageAuditingJob(const DescribeWebPageAuditingJobReq& req, DescribeWebPageAuditingJobResp* resp);
qcloud_cos::CosConfig config("./config.json");qcloud_cos::CosAPI cos(config);std::string bucket_name = "examplebucket-1250000000";DescribeWebPageAuditingJobReq req(bucket_name);DescribeWebPageAuditingJobResp resp;// 添加请求参数 参数详情请见api接口文档req.SetJobId("aab1ca9fc8a3ed11ea834c525400863904");// 调用接口,获取任务响应对象CosResult result = cos.DescribeWebPageAuditingJob(req, &resp);if (result.IsSucc()) {// 查询审核任务成功,可以调用 DescribeWebPageAuditingJobResp 的成员函数} else {// 查询审核任务失败,可以调用 CosResult 的成员函数输出错误信息}
参数 | 参数描述 | 类型 | 是否必填 |
req | DescribeWebPageAuditingJob 操作的请求 | DescribeWebPageAuditingJobReq | 是 |
resp | DescribeWebPageAuditingJob 操作的响应 | DescribeWebPageAuditingJobResp | 是 |
// 设置执行操作的bucketvoid SetBucketName(const std::string& bucket_name);// 设置查询的审核任务IDvoid SetJobId(const std::string& job_id);
// 获取API请求执行返回的任务详情WebPageAuditingJobsDetail GetJobsDetail();// 获取API请求的透传IDstd::string GetRequestId();
本页内容是否解决了您的问题?