[TOC]
* * * * *
### WeEngine Android、IOS History api
#### 足迹列表
~~~[api]
POST:https://127.0.0.1/app/index.php?i=4&c=entry&m=ewei_shopv2&do=mobile&r=apply.member.history.get_list
*string:page=1#页码
*string:openid=默认值#openid
<<<
success
{
"status": 1,
"result": {
"list": [
{
"id": "", //关注ID
"goodsid": "", //商品ID
"title": "", //商品标题
"thumb": "", //缩略图
"marketprice": "", //商品现价
"productprice": "", //商品原价
"createtime": "", //创建时间 时间戳
"merchid": "", //商户ID
"merchname": "" //商户名称
}
],
"total": "", 数量
"pagesize": , //每页数量
}
}
<<<
error
{
"status": 0,
"result": {
"message": "错误信息"
}
}
~~~
#### 清除足迹
~~~[api]
POST:https://127.0.0.1/app/index.php?i=4&c=entry&m=ewei_shopv2&do=mobile&r=apply.member.history.remove
*array:ids=默认值#足迹ID组
*string:openid=默认值#openid
<<<
success
{
"status": 1
}
<<<
error
{
"status": 0,
"result": {
"message": "错误信息"
}
}
~~~