1
This commit is contained in:
@@ -1,7 +1,6 @@
|
|||||||
package mtwmapi
|
package mtwmapi
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"git.rosy.net.cn/jx-callback/globals"
|
|
||||||
"math"
|
"math"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
@@ -39,6 +38,7 @@ type OrderComment struct {
|
|||||||
// 根据门店id批量查询评价信息(新版)
|
// 根据门店id批量查询评价信息(新版)
|
||||||
// http://developer.waimai.meituan.com/home/docDetail/191
|
// http://developer.waimai.meituan.com/home/docDetail/191
|
||||||
func (a *API) CommentQuery(poiCode string, startDateStr, endDateStr string, offset, limit int, replyStatus int) (commentList []*OrderComment, err error) {
|
func (a *API) CommentQuery(poiCode string, startDateStr, endDateStr string, offset, limit int, replyStatus int) (commentList []*OrderComment, err error) {
|
||||||
|
nowApi := a // 使用该变量缓存当前API的token,由于使用地址,导致其他变量修改了当前变量的token数据较大时出现异常
|
||||||
params := map[string]interface{}{
|
params := map[string]interface{}{
|
||||||
KeyAppPoiCode: poiCode,
|
KeyAppPoiCode: poiCode,
|
||||||
"start_time": startDateStr,
|
"start_time": startDateStr,
|
||||||
@@ -61,13 +61,7 @@ func (a *API) CommentQuery(poiCode string, startDateStr, endDateStr string, offs
|
|||||||
}
|
}
|
||||||
params["pageoffset"] = offset
|
params["pageoffset"] = offset
|
||||||
params["pagesize"] = limit
|
params["pagesize"] = limit
|
||||||
result, err := a.AccessAPI("comment/query", true, params)
|
result, err := nowApi.AccessAPI("comment/query", true, params)
|
||||||
if poiCode == "18805464" {
|
|
||||||
globals.SugarLogger.Debugf("param :==== %s", utils.Format4Output(params, false))
|
|
||||||
globals.SugarLogger.Debugf("result :==== %s", utils.Format4Output(result, false))
|
|
||||||
globals.SugarLogger.Debugf("err :==== %v", err)
|
|
||||||
globals.SugarLogger.Debugf("token :==== %s", a.token)
|
|
||||||
}
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user