微信扫码支付asp接口源码分享:
微信公众号接口配置:
扫码支付需要微信公众号中四个参数,分别如下:
以下为配置文件源代码:
config.asp
-------------------------------------
option explicit
Response.CodePage=65001
Response.Charset="UTF-8"
dim getPartnerKey,getAppId,getSecret,getMCHID,notify_url
getMCHID = "1484846642" '微信支付分配的商户号mch_id
getPartnerKey = "1990cf57d1fa9544f26001e61380c93c" '密钥
getAppId = "wx150fe9128643f7b2" '微信分配的公众账号 appid
getSecret = "82b27e72c89187889ef3f33500346435" '微信分配的公众账号 srcret
notify_url = "//txcsjlb.com/weipay/notify.asp" '异步回调地址
----------------------------
获取以上四个参数请参考下面这篇文章: