警告 |
---|
此对象不会返回 This object does not return a RESPONSE, 只返回图像识别结果only the results of image recognition. |
信息 |
---|
如果是截图,请仔细检查您上传的图片是否完整,如果不完整会影响识别效果 |
创建任务
通过 createTask方法 创建识别任务
...
If it's a screenshot, please carefully check if the uploaded image is complete. Incomplete images can affect the recognition accuracy. |
Create Task
Create recognition task using the method of Create Task.
Request node:
状态
colour Green title 国际节点INTERNATIONAL NODE https://api.yescaptcha.com
状态
colour Green title 国内节点CHINA NODE https://cn.yescaptcha.com
请求地址: Method address::
https://api.yescaptcha.com/createTask
请求格式:Request format:
POST
application/json
...
Object structure
属性 | 类型 | 必须 | 说明 | ||||||
---|---|---|---|---|---|---|---|---|---|
type | string | 是 | FunCaptchaClassification
| ||||||
image | string | 是 | Base64 编码的图片,可以是截图 (只传六宫格图片部份,其他内容不要传,上面标题之类的东西不要传,只传图片!) | ||||||
question | String | 是 | 问题名称,请传全称,如: 服务器会根据问题自动判断不同的图片类型,所以请确保问题正确。 全部图片类型与对应的英文问题请看文档最后列表 |
...
代码块 | ||
---|---|---|
| ||
{ "errorId": 0, "errorCode": "", "status": "ready", "solution": { "objects": [4], // 目标所处的位置,第5张图片(从0开始) "labels": [ "parrot", "panda", "octopus", "owl", "bread", "dog" ] }, "taskId": "04a3fa76-11a0-11ed-a58c-0ef20f419382" } |
图片格式与问题说明:
如果遇到新的类型,请联系客服增加支持。
PS 如果遇到竖的6宫格,直接获取原图上传,服务端可以自动识别。
...