点击 返回调试器

图片识别文字OCR接口


接口地址:https://blog.junphp.com/api/img_ocr/php/v1/Interface.php
请求头:
请求类型:POST
数据类型:application/x-www-form-urlencoded

请求参数:
{
    appid:"blog.junphp.com", // 固定这个值就行
    file: FILE, // 图片表单,需要识别的file对象
}

返回值:
数据类型:json
// 成功
{
    "code": "00",
    "msg": "识别完成",
    "data": {
        "words": [
            {
                "value": "算法与数据结构"
            },
            {
                "value": "高质量进阶"
            }
        ]
    }
}

// 失败
{
    "code":"01",
    "msg":"识别失败",
}

取值结果:
code00时,接口正常,其他情况下都是错误。