func (s *CIService) PutTextAuditingJob(ctx context.Context, opt *PutTextAuditingJobOptions) (*PutTextAuditingJobResult, *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.PutTextAuditingJobOptions{InputObject: "test.txt",Conf: &cos.TextAuditingJobConf{DetectType: "Porn,Ads",},}res, _, err := c.CI.PutTextAuditingJob(context.Background(), opt)
type PutTextAuditingJobOptions struct {InputObject stringInputUrl stringInputContent stringInputDataId stringInputUserInfo *UserExtraInfoConf *TextAuditingJobConf}type UserExtraInfo struct {TokenId stringNickname stringDeviceId stringAppId stringRoom stringIP stringType string}type TextAuditingJobConf struct {DetectType stringCallback stringCallbackVersion stringBizType string}
参数名称 | 参数描述 | 类型 |
InputObject | 当前 COS 存储桶中的文本文件名称,例如在目录 test 中的文件 test.txt,则文件名称为 test/test.txt ,文本文件仅支持UTF8编码和 GBK 编码的内容,且文件大小不得超过1MB。Object, Url 和 Content 只能选择其中一种。 | String |
InputContent | 当传入的内容为纯文本信息,需要先经过 base64 编码,文本编码前的原文长度不能超过10000个 utf8 编码字符。若超出长度限制,接口将会报错。Object, Url 和 Content 只能选择其中一种。 | String |
InputUrl | 文本文件的链接地址,例如 http://examplebucket-1250000000.cos.ap-shanghai.myqcloud.com/test.txt 。Object, Url 和 Content 只能选择其中一种。 | String |
InputDataId | 文本标识,该字段在结果中返回原始内容,长度限制为512字节。 | String |
InputUserInfo | 用户业务字段。 | Object |
Conf | 审核规则配置。 | Struct |
BizType | String | |
DetectType | 审核的场景类型,有效值:Porn(涉黄)、Ads(广告)、Illegal(违法)、Abuse(谩骂),可以传入多种类型,不同类型以逗号分隔,例如:Porn,Ads。如您有更多场景的审核需要,请使用 BizType 参数。 | String |
Callback | 审核结果可以回调形式发送至您的回调地址,支持以 http:// 或者 https:// 开头的地址,例如:http://www.callback.com 。当Input使用Content时,该参数不生效,结果会直接返回。 | String |
CallbackVersion | 回调内容的结构,有效值:Simple(回调内容包含基本信息)、Detail(回调内容包含详细信息)。默认为Simple。 | String |
func (s *CIService) GetTextAuditingJob(ctx context.Context, jobid string) (*GetTextAuditingJobResult, *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 := "stce25f391a72e11eb99f********"res, _, err := c.CI.GetTextAuditingJob(context.Background(), jobId)
参数名称 | 参数描述 | 类型 |
jobId | 任务 ID。 | String |
本页内容是否解决了您的问题?