用户关注.md
1.74 KB
1、关注话题/用户接口
关注话题/用户接口(app.grass.updateAttention)
请求参数
参数名称 | 参数类型 | 可否为空 | 示例 | 默认值 | 备注 |
---|---|---|---|---|---|
uid | Integer | 否 | 1 | null | 用户uid |
topicId | Integer | 否 | 1 | null | 话题id |
followUid | String | 否 | 1 | null | 关注用户 |
status | Integer | 否 | 10 | null | 状态(0:关注,1:取消) |
attentionType | Integer | 否 | 1 | null | 类型(0:话题,1:用户) |
注意,通用的头部没有列出。
请求示例
http://api-test3.dev.yohocorp.com/gateway?uid=12&topicId=1&followUid=1&status=0&attentionType=0&method=app.grass.updateAttention
响应
code为200即为成功。 响应JSON格式如下所示:
{
"alg": "SALT_MD5",
"code": 200,
"data": [],
"md5": "6d729d4b35f10fc73531210bd7ecff91",
"message": "success."
}
2、收藏(或取消收藏)文章接口
收藏(或取消收藏)文章接口(app.grass.updateFavorite)
请求参数
参数名称 | 参数类型 | 可否为空 | 示例 | 默认值 | 备注 |
---|---|---|---|---|---|
uid | Integer | 否 | 1 | null | 用户uid |
articleId | Integer | 否 | 1 | null | 文章id |
attentionType | Boolean | 否 | 1 | null | 是否收藏(true:收藏,false:取消) |
注意,通用的头部没有列出。
请求示例
http://api-test3.dev.yohocorp.com/gateway?articleId=12&method=app.grass.updateFavorite&isAdd=true&uid=1
响应
code为200即为成功。 响应JSON格式如下所示:
{
"alg": "SALT_MD5",
"code": 200,
"data": [],
"md5": "6d729d4b35f10fc73531210bd7ecff91",
"message": "success."
}