Authored by 张帅

更新文档

@@ -306,3 +306,109 @@ code为200即为成功。 @@ -306,3 +306,109 @@ code为200即为成功。
306 ``` 306 ```
307 307
308 308
  309 +## 3、全部图片接口- 闲鱼H5调用##
  310 +
  311 +全部图片接口 (app.grass.productArticleListOnlyImage)
  312 +#### 请求参数
  313 +| 参数名称 | 参数类型 | 可否为空 | 示例 | 默认值 | 备注 |
  314 +|:-------| -----:|-----:|-----:|-----:|----:|
  315 +| productSkn | Integer | 否 | | | 商品skn |
  316 +| productType | Integer | 否 | | | 商品类型, 1 有货商品 2 ufo商品 |
  317 +| page | Integer | 是 | 1 | 1 | 页码 |
  318 +| limit | Integer | 是 | 1 | 10 | 每页显示条数 |
  319 +| articleId | Integer | 否 | 1 | 10 | 文章id |
  320 +
  321 +
  322 +
  323 +
  324 +注意,通用的头部没有列出。
  325 +请求示例
  326 +http://api-test3.dev.yohocorp.com/?app_version=6.9.17&business_line=yohobuy&method=app.grass.productArticleListOnlyImage&udid=861243048197754cd2de191342aa531&debug=XYZ&uid=500031572&client_type=android&productSkn=51063249&productType=1&fromXianYu=Y&articleId=1410492### 响应
  327 +code为200即为成功。
  328 +响应JSON格式如下所示:
  329 +```json
  330 +{
  331 + "code": 200,
  332 + "data":
  333 + {
  334 + "list": [
  335 + {
  336 + "articleId": 1410330,
  337 + "contentData": "https://imgsocial.yohobuy.com/grassImg/2019/10/16/15/018bfd9c38db7c9c81724f47abf8fd4856.jpg?imageView2/{mode}/w/{width}/h/{height}",
  338 + "height": "1080",
  339 + "orderBy": 0,
  340 + "width": "1080"
  341 + },
  342 + {
  343 + "articleId": 1410318,
  344 + "contentData": "https://imgsocial.yohobuy.com/grassImg/2019/10/14/09/0141add6b074cdb9181132f90d7616ea06.jpg?imageView2/{mode}/w/{width}/h/{height}",
  345 + "height": "1080",
  346 + "orderBy": 0,
  347 + "width": "1080"
  348 + },
  349 + {
  350 + "articleId": 1410314,
  351 + "contentData": "https://imgsocial.yohobuy.com/grassImg/2019/10/12/18/01dfee87d6d045e718806b0d69393a4f01.jpg?imageView2/{mode}/w/{width}/h/{height}",
  352 + "height": "1080",
  353 + "orderBy": 0,
  354 + "width": "1080"
  355 + },
  356 + {
  357 + "articleId": 141054,
  358 + "contentData": "https://imgsocial.yohobuy.com/grassImg/2019/05/14/16/01bfbf15cea3eeabce5a880090c6ac0fc1.jpg?imageView2/{mode}/w/{width}/h/{height}",
  359 + "height": "1080",
  360 + "orderBy": 0,
  361 + "width": "1080"
  362 + },
  363 + {
  364 + "articleId": 141054,
  365 + "contentData": "https://imgsocial.yohobuy.com/grassImg/2019/05/14/16/01bb7bc7262d0d74f7ac8f0fb5de975d55.jpg?imageView2/{mode}/w/{width}/h/{height}",
  366 + "height": "1080",
  367 + "orderBy": 1,
  368 + "width": "1080"
  369 + },
  370 + {
  371 + "articleId": 140846,
  372 + "contentData": "http://img12.static.yhbimg.com/grassImg/2019/04/25/10/02a95099a09d901966f1b806c70af3db7a.jpg?imageView2/{mode}/w/{width}/h/{height}",
  373 + "height": "400",
  374 + "orderBy": 0,
  375 + "width": "400"
  376 + },
  377 + {
  378 + "articleId": 140846,
  379 + "contentData": "http://img12.static.yhbimg.com/grassImg/2019/04/25/10/02e2642424bb93d338cb51d7cc8a4ac6c7.jpg?imageView2/{mode}/w/{width}/h/{height}",
  380 + "height": "500",
  381 + "orderBy": 1,
  382 + "width": "500"
  383 + },
  384 + {
  385 + "articleId": 140846,
  386 + "contentData": "http://img13.static.yhbimg.com/grassImg/2019/04/25/10/02735a5f5d91a0f027f7abe25f6e949c74.jpg?imageView2/{mode}/w/{width}/h/{height}",
  387 + "height": "500",
  388 + "orderBy": 2,
  389 + "width": "500"
  390 + },
  391 + {
  392 + "articleId": 140740,
  393 + "contentData": "http://img10.static.yhbimg.com\\grassImg/2019/03/14/10/01eeb4e419c8e3026bf223ce3e9adbbe4a.jpg?imageView2/{mode}/w/{width}/h/{height}",
  394 + "height": "1",
  395 + "orderBy": 0,
  396 + "width": "1"
  397 + },
  398 + {
  399 + "articleId": 140434,
  400 + "contentData": "https://imgsocial.yohobuy.com/grassImg/2019/03/12/16/01029a6b1926c8b765d89c0685a57689af.933452.jpg?imageView2/{mode}/w/{width}/h/{height}",
  401 + "height": "1334",
  402 + "orderBy": 0,
  403 + "width": "750"
  404 + }
  405 + ],
  406 + "pageNo": 1,
  407 + "pageSize": 10,
  408 + "totalCount": 11,
  409 + "totalPage": 2
  410 + },
  411 + "message": "success"
  412 +}
  413 +```
  414 +