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

Querying a Video Moderation Job

  1. This section describes how to query a video moderation job using the video moderation SDK and AK/SK.

    In the sample code, you can use withJobId of the RunQueryVideoModerationJobRequest class to configure the ID of the review task. After the configuration is complete, run the code.

    package com.huaweicloud.sdk.test;
     
    import com.huaweicloud.sdk.core.auth.ICredential;
    import com.huaweicloud.sdk.core.auth.BasicCredentials;
    import com.huaweicloud.sdk.core.exception.ConnectionException;
    import com.huaweicloud.sdk.core.exception.RequestTimeoutException;
    import com.huaweicloud.sdk.core.exception.ServiceResponseException;
    import com.huaweicloud.sdk.moderation.v3.region.ModerationRegion;
    import com.huaweicloud.sdk.moderation.v3.*;
    import com.huaweicloud.sdk.moderation.v3.model.*;
     
    public class RunQueryVideoModerationJobSolution {
     
        public static void main(String[] args) {
           // 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.
            String ak = System.getenv("HUAWEICLOUD_SDK_AK");
            String sk = System.getenv("HUAWEICLOUD_SDK_SK");
     
            ICredential auth = new BasicCredentials()
                    .withAk(ak)
                    .withSk(sk);
     
            ModerationClient client = ModerationClient.newBuilder()
                    .withCredential(auth)
                    .withRegion(ModerationRegion.valueOf("xxx")) //Replace xxx with the service region, for example, ap-southeast-3.
                    .build();
            RunQueryVideoModerationJobRequest request = new RunQueryVideoModerationJobRequest();
            request.withJobId("jobId");
            try {
                RunQueryVideoModerationJobResponse response = client.runQueryVideoModerationJob(request);
                System.out.println(response.toString());
            } catch (ConnectionException e) {
                e.printStackTrace();
            } catch (RequestTimeoutException e) {
                e.printStackTrace();
            } catch (ServiceResponseException e) {
                e.printStackTrace();
                System.out.println(e.getHttpStatusCode());
                System.out.println(e.getErrorCode());
                System.out.println(e.getErrorMsg());
            }
        }
    }
  2. The console returns the submission result of the query request and the video moderation job query result.
    class RunQueryVideoModerationJobResponse {
        requestId: a6dcb5c9f993efb977c8898e1ef91c87
        jobId: 01663171200_48ce5a21498e47af8f2a49773c3d0fce
        status: running
        requestParams: class VideoModerationResultRequestParams {
            data: class VideoModerationResultRequestParamsData {
                url: http://xxx.xx.xxxx
                frameInterval: 5
            }
            eventType: default
            imageCategories: [porn, image_text, terrorism]
            audioCategories: [ad, porn]
            callback: http://xxx.xx.xxxx
        }
        createTime: null
        updateTime: 2022-09-15T14:08:06.006Z
        result: null
    }