func (s *CIService) PutWebpageAuditingJob(ctx context.Context, opt *PutWebpageAuditingJobOptions) (*PutWebpageAuditingJobResult, *Response, error)
// 将 examplebucket-1250000000 和 COS_REGION 修改为真实的信息// CI 任务需要提供CIURLbu, _ := url.Parse("https://examplebucket-1250000000.cos.COS_REGION.myqcloud.com")cu, _ := url.Parse("https://examplebucket-1250000000.ci.COS_REGION.myqcloud.com")b := &cos.BaseURL{BucketURL: bu, CIURL: cu}c := cos.NewClient(b, &http.Client{Transport: &cos.AuthorizationTransport{SecretID: os.Getenv("SECRETID"),SecretKey: os.Getenv("SECRETKEY"),}})opt := &cos.PutWebpageAuditingJobOptions{InputUrl: "http://www.test.com",Conf: &cos.WebpageAuditingJobConf{DetectType: "Porn,Ads",},}res, _, err := c.CI.PutWebpageAuditingJob(context.Background(), opt)
type PutWebpageAuditingJobOptions struct {InputUrl stringInputDataId stringInputUserInfo *UserExtraInfoConf *WebpageAuditingJobConf}type UserExtraInfo struct {TokenId stringNickname stringDeviceId stringAppId stringRoom stringIP stringType string}type WebpageAuditingJobConf struct {DetectType stringCallback stringReturnHighlightHtml bool}
参数名称 | 参数描述 | 类型 |
InputUrl | 网页文件的链接地址,例如 http://www.test.com 。 | String |
InputDataId | 网页标识,该字段在结果中返回原始内容,长度限制为512字节。 | String |
InputUserInfo | 用户业务字段。 | Object |
Conf | 审核规则配置。 | Struct |
DetectType | 审核的场景类型,有效值:Porn(涉黄)、Ads(广告),可以传入多种类型,不同类型以逗号分隔,例如:Porn,Ads。如您有更多场景的审核需要,请使用 BizType 参数。 | String |
Callback | 回调地址,以 http:// 或者 https:// 开头的地址。 | String |
ReturnHighlightHtml | 指定是否需要高亮展示网页内的违规文本,并返回高亮展示的 html 链接。取值为 true 和 false,默认为 false。 | Bool |
func (s *CIService) GetWebpageAuditingJob(ctx context.Context, jobid string) (*GetWebpageAuditingJobResult, *Response, error)
// 将 examplebucket-1250000000 和 COS_REGION 修改为真实的信息// CI 任务需要提供 CIURLbu, _ := url.Parse("https://examplebucket-1250000000.cos.COS_REGION.myqcloud.com")cu, _ := url.Parse("https://examplebucket-1250000000.ci.COS_REGION.myqcloud.com")b := &cos.BaseURL{BucketURL: bu, CIURL: cu}c := cos.NewClient(b, &http.Client{Transport: &cos.AuthorizationTransport{SecretID: os.Getenv("SECRETID"),SecretKey: os.Getenv("SECRETKEY"),}})jobId := "shce25f391a72e11eb99f********"res, _, err := c.CI.GetWebpageAuditingJob(context.Background(), jobId)
参数名称 | 参数描述 | 类型 |
jobId | 任务 ID。 | String |
本页内容是否解决了您的问题?