This commit is contained in:
richboo111
2023-06-15 09:04:49 +08:00
parent cb03333ecb
commit 9aff97778c
2 changed files with 36 additions and 40 deletions

View File

@@ -1,12 +1,7 @@
package controllers
import (
"fmt"
"git.rosy.net.cn/jx-callback/globals"
"git.rosy.net.cn/jx-callback/globals/api"
"github.com/astaxie/beego/server/web"
"io/ioutil"
"net/http"
)
type TaoBaoVegetableController struct {
@@ -14,30 +9,30 @@ type TaoBaoVegetableController struct {
}
// GetCode 淘菜菜获取商户授权code
func (c *TaoBaoVegetableController) GetCode() {
codeData := ""
if c.Ctx.Input.Method() == http.MethodPost {
body, err := ioutil.ReadAll(c.Ctx.Request.Body)
if err != nil {
globals.SugarLogger.Debugf("商户收取code获取:%s,%s", string(body), err.Error())
c.Data["json"] = MsgFail()
c.ServeJSON()
return
}
globals.SugarLogger.Debugf("商户收取code获取:%s", string(body))
codeData = string(body)
} else {
codeData = c.Ctx.Input.Query("code")
}
tokenInfo, err := api.TaoVegetableApi.GetStoreToken(codeData, "")
if err != nil {
globals.SugarLogger.Debugf("获取门店token错误:%s", err.Error())
c.Data["json"] = MsgFail()
c.ServeJSON()
return
}
fmt.Println(tokenInfo)
// 创建storeMap门店信息
// 刷新token
}
//func (c *TaoBaoVegetableController) GetCode() {
// codeData := ""
// if c.Ctx.Input.Method() == http.MethodPost {
// body, err := ioutil.ReadAll(c.Ctx.Request.Body)
// if err != nil {
// globals.SugarLogger.Debugf("商户收取code获取:%s,%s", string(body), err.Error())
// c.Data["json"] = MsgFail()
// c.ServeJSON()
// return
// }
// globals.SugarLogger.Debugf("商户收取code获取:%s", string(body))
// codeData = string(body)
// } else {
// codeData = c.Ctx.Input.Query("code")
// }
//
// tokenInfo, err := api.TaoVegetableApi.GetStoreToken(codeData, "")
// if err != nil {
// globals.SugarLogger.Debugf("获取门店token错误:%s", err.Error())
// c.Data["json"] = MsgFail()
// c.ServeJSON()
// return
// }
// fmt.Println(tokenInfo)
// // 创建storeMap门店信息
// // 刷新token
//}