Updated on 2025-07-02 GMT+08:00

Text Moderation (V3)

  1. This section describes how to use the Text Moderation SDK by AK/SK authentication.

    Change the value of Text in TextDetectionDataReq in the sample code to the text to be detected. Then run the code.

     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    package main
     
    import (
        "fmt"
        "github.com/huaweicloud/huaweicloud-sdk-go-v3/core/auth/basic"
        moderation "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/moderation/v3"
        "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/moderation/v3/model"
        region "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/moderation/v3/region"
    )
     
    func main() {
       // Hard-coded or plaintext AK and SK are risky. For security purposes, encrypt your AK and SK and store them in the configuration file or environment variables.
       // In this example, the AK and SK are stored in environment variables for identity authentication. Before running this example, configure environment variables HUAWEICLOUD_SDK_AK and HUAWEICLOUD_SDK_SK.
       ak := os.Getenv("HUAWEICLOUD_SDK_AK")
       sk := os.Getenv("HUAWEICLOUD_SDK_SK")
     
        auth := basic.NewCredentialsBuilder().
            WithAk(ak).
            WithSk(sk).
            Build()
     
        client := moderation.NewModerationClient(
            moderation.ModerationClientBuilder().
                WithRegion(region.ValueOf("xxx")).  //Replace xxx with the service region, for example, ap-southeast-3.
                WithCredential(auth).
                Build())
     
        request := &model.RunTextModerationRequest{}
        databody := &model.TextDetectionDataReq{
            Text: "text",
        }
        request.Body = &model.TextDetectionReq{
            Data: databody,
            EventType: "comment",
        }
        response, err := client.RunTextModeration(request)
        if err == nil {
            fmt.Printf("%+v\n", response)
        } else {
            fmt.Println(err)
        }
    }
    
  2. The code is successfully executed if the text moderation result is displayed on the console.
    RunTextModerationResponse {"request_id": "d81702cfd3599e103030c3d52d6f955f", "result": {"suggestion": "pass", "label": "normal", "details": []}}