add applepay_callback
This commit is contained in:
parent
3a4f4aacd2
commit
8ba557f493
|
@ -0,0 +1,23 @@
|
|||
package controller
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"github.com/gin-gonic/gin"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
"service/bizcommon/util"
|
||||
"service/library/logger"
|
||||
)
|
||||
|
||||
func ApplepayCallback(ctx *gin.Context) {
|
||||
var bodyParam map[string]interface{}
|
||||
buf, err := ioutil.ReadAll(ctx.Request.Body)
|
||||
logger.Info("ApplepayCallback body: %v", string(buf))
|
||||
err = json.Unmarshal(buf, &bodyParam)
|
||||
if err != nil {
|
||||
logger.Error("arg parse fail: %v", err)
|
||||
ReplyJsonError(ctx, http.StatusBadRequest, "参数解析失败")
|
||||
return
|
||||
}
|
||||
logger.Info("ApplepayCallback param: %v", util.ToJson(bodyParam))
|
||||
}
|
|
@ -294,6 +294,7 @@ func Init(r *gin.Engine) {
|
|||
extVasPayGroup := r.Group("/ext/vas")
|
||||
extVasPayGroup.POST("alipay_callback", AlipayCallback)
|
||||
extVasPayGroup.POST("wxpay_callback", WxpayCallback)
|
||||
extVasPayGroup.POST("applepay_callback", ApplepayCallback)
|
||||
|
||||
opVasPayGroup := r.Group("/op/vas", PrepareOp())
|
||||
opVasPayGroup.POST("create_order", middleware.JSONParamValidator(vasproto.OpCreateOrderReq{}), OpCreateOrder)
|
||||
|
|
Loading…
Reference in New Issue