更新时间:2024-01-31 GMT+08:00
分享

查询水印配置模板

代码说明

  • 查询水印配置模板任务支持指定模板ID查询,也支持分页查询。
  • 指定模板ID查询,一次最多支持查询10个模板ID。
  • 分页查询需指定页数和每页的模板数;若不带参数,服务自动取page为0,size为10。

核心代码

  1. 设置查询参数。
    1. 根据水印模板ID查询。
      1
      ListWatermarkTemplateRequest req = new ListWatermarkTemplateRequest().withTemplateId(Collections.singletonList(215728));
      
    2. 根据页数查询。
      1
      2
      根据page和size进行分页查询
      ListWatermarkTemplateRequest req = new ListWatermarkTemplateRequest().withPage(1).withSize(10);
      
  2. 发送查询请求,并显示返回消息
    1
    2
    3
    4
    // 发送查询水印模板请求给媒体处理服务
    ListWatermarkTemplateResponse rsp = initMpcClient().listWatermarkTemplate(req);
    // 打印返回消息
    System.out.println("rsp=" + JsonUtils.toJSON(rsp));
    

完整代码

 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
43
44
45
46
47
48
49
50
51
52
53
import com.huaweicloud.sdk.core.auth.BasicCredentials;
import com.huaweicloud.sdk.core.exception.ClientRequestException;
import com.huaweicloud.sdk.core.exception.ConnectionException;
import com.huaweicloud.sdk.core.exception.RequestTimeoutException;
import com.huaweicloud.sdk.core.http.HttpConfig;
import com.huaweicloud.sdk.core.utils.JsonUtils;
import com.huaweicloud.sdk.mpc.v1.MpcClient;
import com.huaweicloud.sdk.mpc.v1.model.ListWatermarkTemplateRequest;
import com.huaweicloud.sdk.mpc.v1.model.ListWatermarkTemplateResponse;
import com.obs.services.internal.ServiceException;

import java.util.Collections;

public class TestListWatermarkTemplate {
    /**
     * 初始化 MpcClient
     * @return
     */
    public static MpcClient initMpcClient() {
        HttpConfig httpConfig = HttpConfig.getDefaultHttpConfig().withIgnoreSSLVerification(true).withTimeout(3);
        //http代理设置,请根据实际情况设置
        //httpConfig.withProxyHost("xxxxxx").withProxyPort(xxxxxx).withProxyUsername("xxxxxx").
        //        withProxyPassword("xxxxxx");
        //根据实际填写ak,sk,在控制台帐号名下“我的凭证 > 访问密钥”上创建和查看您的AK/SK
        
        String ak = System.getenv("SDK_AK");
        String sk = System.getenv("SDK_SK");
        //根据实际填写项目ID,在控制台帐号名下“我的凭证 > API凭证”下查看您的项目ID
        String projectId = System.getenv("PROJECT_ID");
        //根据实际填写所需endpoint,这里以“region01”为例
        String endpoint = "https://mpc.region01.myhuaweicloud.com";
        BasicCredentials auth = new BasicCredentials().withAk(ak).withSk(sk).withProjectId(projectId);
        return MpcClient.newBuilder()
                .withHttpConfig(httpConfig)
                .withCredential(auth)
                .withEndpoint(endpoint)
                .build();
    }

    /**
     * 查询水印模板
     * @param args
     */
    public static void main(String[] args) {
        ListWatermarkTemplateRequest req = new ListWatermarkTemplateRequest().withTemplateId(Collections.singletonList(215728));
        try {
            ListWatermarkTemplateResponse rsp = initMpcClient().listWatermarkTemplate(req);
            System.out.println("rsp=" + JsonUtils.toJSON(rsp));
        } catch (ClientRequestException | ConnectionException | RequestTimeoutException | ServiceException e) {
            System.out.println(e);
        }
    }
}
分享:

    相关文档

    相关产品