[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": "錯誤信息"
}
}
~~~