实现微信支付V2和V3。
python端, 修改version3中的config文件
config = {
'appId': '',
'Mchid': '',
'Key': '',
'notify_url': ''
}
import version3
import json
params = version3.build_form_by_params({
'body': 'test',
'out_trade_no': 'id',
'total_fee': '1',
'spbill_create_ip': '127.0.0.1',
'openid': ''
})
json.dumps(params)
前端
var json_str = $.get(url)
var params = JSON.parse(json_str)
WeixinJSBridge.invoke('getBrandWCPayRequest', params, function(res){
if(res.err_msg == "get_brand_wcpay_request:ok" ) {
}
});
python端
import version3
version3.verify_notify_string(request_string)
返回True或者False
python端, 修改version2中的config文件
config = {
'appId': 'xxx',
'appSecret': 'xxx',
'paySignKey': 'xxx',
'partnerId': 'xxx',
'partnerKey': 'xxx',
'notify_url': 'xxx'
}
import version2
import json
params = version2.build_form(
'body': 'product name',
'out_trade_no': 'order number',
'total_fee': '1',
'spbill_create_ip': 'd.d.d.d'
)
json.dumps(params)
前端
var json_str = $.get(url)
var params = JSON.parse(json_str)
document.addEventListener('WeixinJSBridgeReady', function onBridgeReady() {
WeixinJSBridge.call('hideOptionMenu');
WeixinJSBridge.call('hideToolbar');
$('a#getBrandWCPayRequest').click(function(e){
WeixinJSBridge.invoke('getBrandWCPayRequest', params, function(res){
alert(res.err_msg)
if(res.err_msg == "get_brand_wcpay_request:ok" ) {
// check notify, or query
}
if(res.err_msg == "get_brand_wcpay_request:cancel") {
}
if(res.err_msg == "get_brand_wcpay_request:fail") {
alert("支付失败.")
}
});
});
}, false)
python端
import version2
version2.verify_notify_string(request_string)
返回True或者False