通过 createTask方法 创建识别任务,然后通过 getTaskResult 方法 获取识别结果
信息 |
---|
此对象用于识别图片类型、不固定长度的英文或数字 |
创建任务
通过 createTask方法 创建识别任务
请求节点:
状态 | ||||
---|---|---|---|---|
|
https://api.yescaptcha.com
状态 | ||||
---|---|---|---|---|
|
https://cn.yescaptcha.com
...
请求格式:POST
application/json
对象结构
属性 | 类型 | 必须 | 说明 | ||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
type | string | 是 | ImageToTextTaskTest
ImageToTextTaskM1
| ||||||||||||||||||||||||||
body | string | 是 | 图片的base64编码内容(不要换行符)(不要data:image/*********;base64,内容 |
请求示例
代码块 | ||
---|---|---|
| ||
{ "clientKey":"cc9c18d3e263515c2c072b36a7125eecc078618f", "task": { "type":"ImageToTextTaskTest", "body": "/9j/4AAQSkZJRgABA......" # base64编码后的图片 } } |
返回示例
代码块 |
---|
{ "errorId": 0, "errorCode": "", "errorDescription": "", "status": "ready", "solution": { "text": "44795"" }, "taskId": "2376919c-1863-11ec-a012-94e6f7355a0b", } |
...