阿里接口平台--印刷字识别_身份证识别API接口phpdemo使用

一.打开阿里云官网

阿里接口平台--印刷字识别_身份证识别API接口phpdemo使用_第1张图片


二.找到API市场的印刷文字识别_身份证识别

阿里接口平台--印刷字识别_身份证识别API接口phpdemo使用_第2张图片


三.注册账号,花1分钱购买使用

阿里接口平台--印刷字识别_身份证识别API接口phpdemo使用_第3张图片


四.记下appcode,我使用的是php演示接口请求

";
    print_r($res);
?>

五.运行程序在浏览器查看结果

阿里接口平台--印刷字识别_身份证识别API接口phpdemo使用_第4张图片


六.一些细节

1,正反面识别,要改动请求参数中的face

{
    "inputs": [
        {
            "image": {
                "dataType": 50,
                "dataValue": "图片二进制数据的base64编码"    
            },
            "configure": {
                "dataType": 50,
                "dataValue": "{\"side\":\"face\"}"  #身份证正反面类型:face/back
            }
        }
    ]
}

2,结果说明

正面返回结果:
{
    "outputs": [
    {
        "outputLabel": "ocr_id",
        "outputMulti": {},
        "outputValue": {
            "dataType": 50,
            "dataValue": "{
                \"address\"    : \"浙江省杭州市余杭区文一西路969号\",   #地址信息
                \"config_str\" : \"{\\\"side\\\":\\\"face\\\"}\",                #配置信息,同输入configure
                \"face_rect\":{
                    \"angle\": -90,
                    \"center\":{
                        \"x\" : 952,
                        \"y\" : 325.5
                    },
                    \"size\":{
                        \"height\":181.99,
                        \"width\":164.99
                        }
                },                          #人脸位置,center表示人脸矩形中心坐标,size表示人脸矩形长宽,angle表示矩形顺时针旋转的度数。
                \"name\" : \"张三\",                                  #姓名
                \"nationality\": \"汉\", #民族 
                \"num\" : \"1234567890\",                             #身份证号
                \"sex\" : \"男\",                                     #性别
                \"birth\" : \"20000101\",                             #出生日期
                \"nationality\" : \"汉\",                             #民族
                \"success\" : true                                  #识别结果,true表示成功,false表示失败
            }"
        }
    }]
}

反面返回结果:
{
    "outputs": [
    {
        "outputLabel": "ocr_id",
        "outputMulti": {},
        "outputValue": {
            "dataType": 50,
            "dataValue": "{
                \"config_str\" : 
                \"{\\\"side\\\":\\\"back\\\"}\",#配置信息,同输入configure
                \"start_date\" : \"19700101\",       #有效期起始时间
                \"end_date\" : \"19800101\",         #有效期结束时间
                \"issue\" : \"杭州市公安局\",         #签发机关
                \"success\" : true                   #识别结果,true表示成功,false表示失败
            }"
        }
    }]
}


你可能感兴趣的:(php,第三方API应用)