微信支付服务号为什么创建不了订单?
go SDK 0.2.20版本,官方demo func main() { var ( mchID string = "xxxxxx" // 商户号 mchCertificateSerialNumber string = "xxxxxxxxx" // 商户证书序列号 mchAPIv3Key string = "xxxxxxxxxxxxxx" // 商户APIv3密钥 ) // 使用 utils 提供的函数从本地文件中加载商户私钥,商户私钥会用来生成请求的签名 mchPrivateKey, err := utils.LoadPrivateKeyWithPath("./apiclient_key.pem") if err != nil { log.Fatal("load merchant private key error") } ctx := context.Background() // 使用商户私钥等初始化 client,并使它具有自动定时获取微信支付平台证书的能力 opts := []core.ClientOption{ option.WithWechatPayAutoAuthCipher(mchID, mchCertificateSerialNumber, mchPrivateKey, mchAPIv3Key), } client, err := core.NewClient(ctx, opts...) if err != nil { log.Fatalf("new wechat pay client err:%s", err) } // 以 Native 支付为例 svc := native.NativeApiService{Client: client} // 发送请求 resp, result, err := svc.Prepay(ctx, native.PrepayRequest{ Appid: core.String("wx123123123123123"), Mchid: core.String("xxxxxxxxxxx"), Description: core.String("Image形象店-深圳腾大-QQ公仔"), OutTradeNo: core.String("1217752501201407033233368018"), Attach: core.String("自定义数据说明"), NotifyUrl: core.String("https://www.weixin.qq.com/wxpay/pay.php"), Amount: &native.Amount{ Total: core.Int64(100), }, }, ) // 使用微信扫描 resp.code_url 对应的二维码,即可体验Native支付 } 运行提示: http response:[StatusCode: 404 Code: "RESOURCE_NOT_EXISTS" Message: 无可用的平台证书,请在商户平台-API安全申请使用微信支付公钥。可查看指引https://pay.weixin.qq.com/docs/merchant/products/platform-certificate/wxp-pub-key-guide.html