{ "code": "10000", "charge": false, "msg": "查询成功", "result": { "result": { "file_name_print_wm": [ "https://testleqi.oss-cn-shanghai.aliyuncs.com/result_wm/a7ee0c3a70a611e9a37e00163e0070b6red3_print_wm.jpg?Expires=1557219971&Signature=Is0BjAE5JApbs+dWUHK19t+i9R8=&OSSAccessKeyId=LTAIQ8Lif1HHVkXd" ], "check_result": { "clothes_similar": 1, "face_noise": 1, "headpose_pitch": 1, "headpose_yaw": 1, "sight_line": 1, "face_blur": 1, "shoulder_equal": 1, "photo_format": 1, "eyes_close": 1, "file_size": 1, "px_and_mm": 1, "face_center": 1, "spec_id": 360, "facial_pose": 1, "name": "公共英语考试(二寸)", "headpose_roll": 1 }, "file_name_wm": [ "https://testleqi.oss-cn-shanghai.aliyuncs.com/result_wm/a7ee0c3a70a611e9a37e00163e0070b6red3_wm.jpg?Expires=1557219971&Signature=BkjWPKcBnLlB+c+IukVTw+GzYtg=&OSSAccessKeyId=LTAIQ8Lif1HHVkXd" ], "size": [ 413, 531 ], "file_name": [ "a7ee0c3a70a611e9a37e00163e0070b651504red3" ], "check": 1, "is_print": 1, "size_print": [ 1795, 1205 ] }, "code": 200 } }
<?php /** * Created by PhpStorm. * User: FZS * Time: 2021/01/01 21:26 */ class freeApi { private $apiUrl; public function __construct() { $this->apiUrl = 'https://way.jd.com/LeQiTechnology/ID_photo_quality_verification_and_production?appkey=ak'; } /** * 获取结果 * @return array */ public function getResult() { return file_get_contents($this->apiUrl); } }
package main import ( "fmt" "io/ioutil" "log" "net/http" ) const ( APIURL = "https://way.jd.com/LeQiTechnology/ID_photo_quality_verification_and_production?appkey=ak" ) func main() { queryUrl := fmt.Sprintf("%s",APIURL) resp, err := http.Get(queryUrl) if err != nil { log.Println(err) return } defer resp.Body.Close() body, err := ioutil.ReadAll(resp.Body) if err != nil { fmt.Println(err) return } fmt.Println(string(body)) }