>获取会员数据
~~~[api]
get:/index.php/gamecow/Apigame/member_get_user_data
<<<
success
{
"err": 0,
"leve": {
"leve": 1,
"experience": 100,
"maxExperience": 100
},
"point": {
"money": 0,
"point": 48180
}
}
~~~
| 字段 | 详情 |
| --- | --- |
| leve| 等级信息|
| |---leve| 会员等级 |
| |---experience| 当前经验 |
| |---maxExperience| 最大经验 |
| point| 积分信息|
| |---money| 资金 |
| |---point| 金币 |
>设置用户信息
~~~[api]
get:/index.php/gamecow/Apigame/member_set_user_info
int:recommendid=10#上级推荐人id,24小时有效
int:headpath= #头像
string:nickname= #昵称
string:mobile= #手机号
<<<
success
{
"err": 0,
}
<<<
error
{
"err": 1,
"code": 1000,
"content": "错误信息"
}
~~~
>上传图片
~~~[api]
get:/index.php/gamecow/Apigame/member_set_img
<<<
success
{
"err": 0,
"data": {
"filename": '1.JPG',
"fileid": 10,
"url": "http://WWW.XXX.COM/1.JPG"
},
}
<<<
error
{
"err": 1,
"code": 1000,
"content": "错误信息"
}
~~~
| 字段 | 详情 |
| --- | --- |
| data| 等级信息|
| |---filename| 文件名称 |
| |---fileid| 文件id |
| |---url| 图片连接 |
> 获取登录会员接收信息列表
~~~[api]
get:/index.php/message/Apimessage/member_to_message_list
int:system_type=0#信息类型 0:全部信息 1:系统信息, 2:收益信息,3:分享通知,4:评论信息,9:其它信息
int:pagesize=10#每页显示个数
int:page=1#显示页码数
string:keyword= #检索的关键字
string:sort= id #排序字段
string:sort_type= asc#排序类型
int:set_look= 0#是否设置为已读状态,0:不设置,1:设置
<<<
success
{
"err": 0,
"page": 1,
"pageTotal": 10,
"pageSize": 10,
"count": 1,
"data": [
{
"id": 1,
"title": "信息标题",
"content": "信息内容",
"addtime": "2020-03-25 11:13:31",
"system_type": 1,
"islook": 1,
"from_userinfo": {
"id": 10,
"nickname": "昵称",
"headpath": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png",
"logintime": "2020-03-25 11:13:31"
},
"to_userinfo": {
"id": 11,
"nickname": "昵称",
"headpath": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png",
"logintime": "2020-03-25 11:13:31"
}
}
]
}
<<<
error
{
"err": 1,
"code": 1000,
"content": "错误信息"
}
~~~
| 字段 | 描述 |
| --- | --- |
| page | 当前页码 |
| pageTotal | 总共页码数 |
| pageSize | 每页显示记录条数 |
| count| 当前记录数 |
| data| 流水列表 |
| |----id | 短信息id |
| |----title| 标题 |
| |----content | 内容 |
| |----addtime| 发送时间 |
| |----system_type| 信息类型 1:系统信息, 2:收益信息,3:分享通知,4:评论信息,9:其它信息 |
| |----islook| 是否已读 0:未读,1:已读 |
| |----from_userinfo| 发送人信息 |
| |----|----id| 发送人会员id |
| |----|----nickname| 发送人昵称 |
| |----|----logintime| 发送人最后登录时间 |
| |----|----headpath| 发送人头像 |
| |----to_userinfo| 接收人信息 |
| |----|----id| 接收人会员id |
| |----|----nickname| 接收人昵称 |
| |----|----logintime| 接收人最后登录时间 |
| |----|----headpath| 接收人头像 |