简要描述:
请求域名:
请求URL:
route=plugin.wechat.admin.fans.controller.fans.getFansList
参数:
参数名 |
是否必须 |
类型 |
说明 |
page |
否 |
int |
分页 - 页码 |
groupId |
否 |
int |
分组ID |
keyword |
否 |
string |
搜索关键字 |
follow |
否 |
int |
关注为1,未关注为0,不传则后台默认为1 |
返回示例:
正确时返回:
{
"total":1,
"per_page":20,
"current_page":1,
"last_page":1,
"next_page_url":null,
"prev_page_url":null,
"from":1,
"to":1,
"data":[
{
"fanid":1,
"acid":2,
"uniacid":2,
"uid":1,
"openid":"or2pXwV2RQk69uTjrq3NOq6MzjT8",
"nickname":"卡卡",
"groupid":[
"2",
"3"
],
"salt":"Vh48g0h4",
"follow":1,
"followtime":1514274411,
"unfollowtime":0,
"updatetime":1530782874,
"unionid":"o-6fOwFPMVBHkGM4wYKgFpLz0bnw",
"has_one_member":[
{
"uid":1,
"mobile":"18026357601",
"avatar_image":"http://www.yz.com/attachment/images/2/2018/07/uALZ7gGRJaroT1115enO701OGOgjv5.png",
"username":null
}
]
}
],
"groups":[
{
"id":2,
"name":"星标组",
"count":10
},
{
"id":3,
"name":"453453",
"count":15
}
],
"fansTotal":67,
"follow":"1",
"keyword":"卡卡",
"syncMember":1
}
返回参数说明:
参数名 |
类型 |
说明 |
result |
int |
返回状态,0为失败,1为成功 |
msg |
string |
提示信息 |
data |
object |
粉丝管理信息 |
data 分页和粉丝列表信息 |
类型 |
说明 |
total |
int |
搜索粉丝总记录数 |
per_page |
int |
每页记录数 |
current_page |
int |
当前页数 |
last_page |
int |
最后一页 |
data |
array |
粉丝列表 |
groups |
array |
分组信息 |
fansTotal |
int |
粉丝总数 |
follow |
int |
关注/未关注 |
keyword |
string |
关键字 |
syncMember |
int |
是否同步会员数据 |
syncFans |
int |
是否开启粉丝同步 |
data 粉丝列表 |
类型 |
说明 |
fanid |
int |
粉丝id |
uid |
int |
会员id |
openid |
string |
openid |
nickname |
string |
粉丝名称 |
groupid |
array |
所属标签 |
follow |
int |
为1则关注,为0则未关注 |
followtime |
int时间戳 |
关注时间 |
unfollowtime |
int时间戳 |
取消关注时间 |
updatetime |
int时间戳 |
更新时间 |
has_one_member |
object |
对应会员信息 |
has_one_member 对应会员信息 |
类型 |
说明 |
uid |
int |
会员id |
mobile |
string |
电话 |
avatar_image |
int |
头像 |
groups 分组信息 |
类型 |
说明 |
id |
int |
分组id |
name |
string |
分组名称 |
count |
int |
分组下的粉丝总数 |
备注: