{ "code": "10000", "charge": false, "remain": 0, "remainTimes": -1, "remainSeconds": -1, "msg": "查询成功", "result": { "channel_id": "test", "dataValue": [{ "rectangle": { "bottom": "658.029785", "cls": 300, "clsName": "全部", "isUserRectangle": 0, "left": "272.751526", "right": "551.015198", "top": "220.425461" }, "sims": [{ "cls": 300, "clsName": "全部", "cid1Name": "厨具", "cid2Name": "茶具", "cid3Name": "咖啡具", "detailAppUrl": "https://item.m.jd.com/product/34885974160.html", "detailUrl": "https://item.jd.com/34885974160.html", "dis": 0.942310035, "imageUrl": "https://img1.360buyimg.com/img/jfs/t1/6616/13/965/58073/5bcae419E5e748d04/9f162f886db00201.jpg", "allImageUrls": "", "similarity": 0.9727983623880836, "skuId": 34885974160, "skuName": "商用全自动速溶咖啡机自助饮料机冷热速溶咖啡奶茶一体机热饮机 X-98T-CF/3台式3热饮+热水+冰水", "skuPrice": "3390.00", "wareLabel": "非自营" }] }], "img_height": 800, "img_width": 800, "main_category_list": "300|5|6|10|14|9|4|3|1|0|8|2|7|13|11|12", "main_category_names": "全部|数码家电|食品饮料|家居家装|其他|个护洗化|箱包|鞋靴|上衣|裙装|配饰|下衣|玩具乐器|绿植|手机|图书影音", "message": "Interface Succeed!", "query_id": "3321c162ce8af41cb4376bdb2a514a46", "status": "0" } }
<?php /** * Created by PhpStorm. * User: FZS * Time: 2021/06/09 19:26 */ class freeApi { private $apiUrl; public function __construct() { $this->apiUrl = 'https://way.jd.com/JDAI/snapshop?appkey=key&channel_id=test&&imgBase64=pic'; } /** * 获取结果 * @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/JDAI/snapshop?appkey=key&channel_id=test&&imgBase64=pic" ) 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)) }