參數名稱 | 類型 | 說明 |
---|---|---|
pic | string | 如果圖片為URL,會返回URL |
type | string | normal正常、sexy性感、porn色情、uncertain不確定 |
score | string | 可信度 100分制 |
<?php require_once 'curl.func.php'; $appkey = 'your_appkey_here';//你的appkey $pic = 'https://api.jisuapi.com/imageidentification/2.jpg'; $url = "https://api.jisuapi.com/imageidentification/identify?appkey=$appkey&pic=$pic"; $result = curlOpen($url, ['ssl'=>true]); $jsonarr = json_decode($result, true); if($jsonarr['status'] != 0) { echo $jsonarr['msg']; exit(); } $result = $jsonarr['result']; echo $result['pic'].' '.$result['type'].' '.$result['score'];
{ "status": 0, "msg": "ok", "result": { "pic": "http://api.jisuapi.com/imageidentification/2.jpg", "type": "normal", "score": "95" } }
代號 | 說明 |
---|---|
201 | 圖片為空 |
202 | 圖片格式錯誤 |
204 | 圖片大小超過300K |
208 | 鑒定失敗 |
210 | 沒有信息 |
代號 | 說明 |
---|---|
101 | APPKEY為空或不存在 |
102 | APPKEY已過期 |
103 | APPKEY無請求此數據權限 |
104 | 請求超過次數限制 |
105 | IP被禁止 |
106 | IP請求超過限制 |
107 | 接口維護中 |
108 | 接口已停用 |
計次套餐 | 套餐規格 | 價格 | ||
---|---|---|---|---|
免費套餐 | 100次 | 0.00元 | ≈0元/次 | |
Level1 | 10000次 | 25元 | ≈0.0025元/次 | |
Level2 | 20000次 | 45元 | ≈0.00225元/次 | |
Level3 | 50000次 | 100元 | ≈0.002元/次 | |
Level4 | 100000次 | 160元 | ≈0.0016元/次 |