Showing
1 changed file
with
52 additions
and
0 deletions
@@ -570,6 +570,58 @@ | @@ -570,6 +570,58 @@ | ||
570 | "message": "success" | 570 | "message": "success" |
571 | } | 571 | } |
572 | ``` | 572 | ``` |
573 | +## 7. 带返回参数的收藏 | ||
574 | + | ||
575 | +#### 请求示例 | ||
576 | + | ||
577 | +>http://devapi.yoho.cn:58078/?method=app.sns.setFavorBackCount&client_type=h5&debug=XYZ&article_id=34258&uid=11 | ||
578 | + | ||
579 | +#### 入参 | ||
580 | + | ||
581 | +| 参数名称 | 参数类型 | 可否为空 | 示例 | 默认值 | 备注 | | ||
582 | +| :---------- | -----: | ---: | ---------------------------: | ---: | ----: | | ||
583 | +| method | string | 否 | app.sns.setFavorBackCount | | | | ||
584 | +| client_type | string | 否 | h5 | | 客户端类型 | | ||
585 | +| article_id | int | 否 | 1 | 1 | 文章 id | | ||
586 | + | ||
587 | + | ||
588 | +#### 出参 | ||
589 | + | ||
590 | +```json | ||
591 | +{ | ||
592 | + "alg": "SALT_MD5", | ||
593 | + "code": 200, | ||
594 | + "data": "2", // 该文章目前有多少收藏 | ||
595 | + "md5": "9e428b0fe50fdb4e5e2ce070b621ed01", | ||
596 | + "message": "操作成功" | ||
597 | +} | ||
598 | +``` | ||
599 | + | ||
600 | +## 8. 带返回参数的取消收藏 | ||
601 | + | ||
602 | +#### 请求示例 | ||
603 | + | ||
604 | +>http://devapi.yoho.cn:58078/?method=app.sns.cancelFavorBackCount&client_type=h5&debug=XYZ&article_id=34258&uid=11 | ||
605 | + | ||
606 | +#### 入参 | ||
607 | + | ||
608 | +| 参数名称 | 参数类型 | 可否为空 | 示例 | 默认值 | 备注 | | ||
609 | +| :---------- | -----: | ---: | ---------------------------: | ---: | ----: | | ||
610 | +| method | string | 否 | app.sns.cancelFavorBackCount | | | | ||
611 | +| client_type | string | 否 | h5 | | 客户端类型 | | ||
612 | +| article_id | int | 否 | 1 | 1 | 文章 id | | ||
613 | + | ||
614 | +#### 出参 | ||
615 | + | ||
616 | +```json | ||
617 | +{ | ||
618 | + "alg": "SALT_MD5", | ||
619 | + "code": 200, | ||
620 | + "data": "1", | ||
621 | + "md5": "c13a1ace2c5883be18643551bd17ebcd", | ||
622 | + "message": "操作成功" | ||
623 | +} | ||
624 | +``` | ||
573 | 625 | ||
574 | ## 其他相关文档 | 626 | ## 其他相关文档 |
575 | 627 |
-
Please register or login to post a comment