做后台管理需要云识别api文档

0 投票
最新提问 9月 6, 2017 用户: mydeadsky (160 分)
需要云识别api文档

1个回答

0 投票
最新回答 9月 6, 2017 用户: czz123 (2,290 分)
发表于 9月 6, 2017 用户: mydeadsky (160 分)
public function targetsList()
    {
   
        $responseJson = $this->curlHttpGetRequest($this->host, $this->targetsList,'');
        echo($responseJson);

        $response = json_decode($responseJson, true);

        if(!isset($response['statusCode']) || !isset($response['result']) ){
            throw new Exception('Target list response format error. responseJson = '.$responseJson);
        }

        return [
            'resultCode' => $response['statusCode'],
            'result' => $response['result'],
        ];

    }
之前是这个接口,现在这个加上limit也不行,还是5张图片?是不是这个接口方法改了?
发表于 9月 6, 2017 用户: czz123 (2,290 分)
图片列表接口吗? 现在是 图库的目标图像列表 | GET /targets/,过滤并获取图库中目标图像的列表。可以依靠limit参数以及上一页最后一张识别目标图的时间戳,实现分页。

但是:这个接口目前只在北美1区所搭载的CRS v2.1版本可用。中国区目前是v2.0,计划在17年9月份升级并开放。
发表于 9月 6, 2017 用户: mydeadsky (160 分)
现在就是9月份啊,什么时候能开放呢?有没有具体时间。
发表于 9月 6, 2017 用户: czz123 (2,290 分)
这个具体时间还请等官网的更新。
发表于 10月 23, 2017 用户: mydeadsky (160 分)
现在更新了吗?ublic function targetsList()
    {
    
        $responseJson = $this->curlHttpGetRequest($this->host, $this->targetsList,'');
        echo($responseJson);

        $response = json_decode($responseJson, true);

        if(!isset($response['statusCode']) || !isset($response['result']) ){
            throw new Exception('Target list response format error. responseJson = '.$responseJson);
        }

        return [
            'resultCode' => $response['statusCode'],
            'result' => $response['result'],
        ];

    }
之前是这个接口,现在这个加上limit也不行,还是5张图片?是不是这个接口方法改了?
欢迎来到 EasyAR Q&A ,有什么不懂的可以尽管在这里提问,你将会收到社区其他成员的回答。
...