参数名称 | 参数类型 | 必填 | 默认值 | 示例值 | 备注 |
---|---|---|---|---|---|
goodsId | string | True | 商品ID | ||
type | string | False | 内容类型,all-全部,bad-差评,normal-中评,good-好评,append-追评,picture-图片,video-视频 | ||
pageNo | string | False | 页码 默认1 | ||
sort | string | False | 排序,1-推荐排序,2-时间排序,默认值:1 | ||
skuVids | string | False | sku评价筛选 skuVids评价筛选,商品sku的vid值 | ||
expression | string | False | 印象词评价筛选 expression 印象词评价筛选 |
<?php header('content-type:text/html;charset=utf-8'); $ch = curl_init(); $url = 'http://api.liangmlk.cn?ak=xxxx&appid=1702&goodsId=xxxx'; curl_setopt($ch,CURLOPT_URL,$url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $res = curl_exec($ch); curl_close($ch); return json_decode($res,true);