You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
528 B
21 lines
528 B
package wxminipay
|
|
|
|
import "recook/internal/domain"
|
|
|
|
const (
|
|
AppID = "wxf95835be72b5373c"
|
|
//AppID = "wx70e983da26f56388"
|
|
APIKey = "83f8932eb742257316e3168ba9e920dk"
|
|
MchID = "1545449631"
|
|
)
|
|
|
|
var (
|
|
PayCallbackUrl = domain.GetName() + "/api/v1/pay/wxminipay/callback"
|
|
RefundCallbackUrl = domain.GetName() + "/api/v1/pay/wxminipay/refund/callback"
|
|
)
|
|
|
|
const (
|
|
CreateOrderURL = "https://api.mch.weixin.qq.com/pay/unifiedorder" // 统一下单
|
|
RefundURL = "https://api.mch.weixin.qq.com/secapi/pay/refund" // 退款
|
|
)
|