其他分享
首页 > 其他分享> > 接入腾讯云的OCR识别身份证信息

接入腾讯云的OCR识别身份证信息

作者:互联网

在公司用到这个功能在这里进行总结一下

1 导入Pom

    <dependency>
            <groupId>com.tencentcloudapi</groupId>
            <artifactId>tencentcloud-sdk-java</artifactId>
            <version>3.1.94</version>
        </dependency>

2 测试类

public class CertificationTest {

    @Test
    public void  CertificationTest(){
        String tsecretId="xxxxx";
        String tsecretKey="xxxx";
        String image="xxxx";
        try{
            Credential cred = new Credential(tsecretId, tsecretKey);
            HttpProfile httpProfile = new HttpProfile();
            httpProfile.setEndpoint("ocr.tencentcloudapi.com");
            ClientProfile clientProfile = new ClientProfile();
            clientProfile.setHttpProfile(httpProfile);
            OcrClient client = new OcrClient(cred, "ap-beijing", clientProfile);
            IDCardOCRRequest req = new IDCardOCRRequest();
            req.setImageUrl(image);
            IDCardOCRResponse resp = client.IDCardOCR(req);

            System.out.println(IDCardOCRResponse.toJsonString(resp));
        } catch (TencentCloudSDKException e) {
            System.out.println(e.toString());
        }
    }
}

标签:CertificationTest,String,接入,req,httpProfile,腾讯,new,OCR,clientProfile
来源: https://www.cnblogs.com/HezhenbinGoGo/p/14986481.html