在微信公众号支付的api中没有这个接口,如果企业需要给用户转账,或者让用户提现或者给用户发红包等需要再商户平台中的产品中心分别开通。
一、开通功能
开通就是点击一下,很简单。但需要注意的是支持向用户转账的账户和收到用户付款的账户不是同一个,而为了满足此功能,你需要先用财付通进行充值(交易中心--资金管理--充值)。
二、下载证书
证书下载在账户中心--api安全,现在需要手机验证码和商户平台登录密码。下载之后再window上进行安装,安装的密码是商户号。
安装之后并将证书放在网站目录下,用于下一步在代码中进行验证。
三、转账
微信现在提供的demo中没有这一块,下面就根据官方的demo做一些修改。和之前的例子类似,我们都需要用wxpaydata对象来操作我们的参数。定义一个transferspay对象。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
public class transferspay
{
public string openid { get ; set ; }
public int amount { get ; set ; }
public string partner_trade_no { get ; set ; }
public string re_user_name { get ; set ; }
public string spbill_create_ip { get ; set ; }
public wxpaydata gettransfersapiparameters()
{
wxpaydata apiparam = new wxpaydata();
apiparam.setvalue( "partner_trade_no" , partner_trade_no);
apiparam.setvalue( "openid" , openid);
apiparam.setvalue( "check_name" , "no_check" );
apiparam.setvalue( "amount" , amount);
apiparam.setvalue( "desc" , "提现" );
apiparam.setvalue( "spbill_create_ip" , spbill_create_ip);
apiparam.setvalue( "re_user_name" , re_user_name);
return apiparam;
}
}
|
在官方demo中的wxpayapi中已经包含了公众号支付的相关方法。再增加一个transfers的方法用来转账:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
public static wxpaydata transfers(wxpaydata inputdata, int timeout = 6)
{
var url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/promotion/transfers" ;
inputdata.setvalue( "mch_appid" , wxpayconfig.appid); //公众账号id
inputdata.setvalue( "mchid" , wxpayconfig.mchid); //商户号
inputdata.setvalue( "nonce_str" , wxpayapi.generatenoncestr()); //随机字符串
inputdata.setvalue( "sign" , inputdata.makesign()); //签名
string xml = inputdata.toxml();
var start = datetime.now;
string response = httpservice.post(xml, url, true , timeout);
// portal.mvc.logger.info("wxpayapi"+ "unfiedorder response : " + response);
var end = datetime.now;
int timecost = ( int )((end - start).totalmilliseconds);
wxpaydata result = new wxpaydata();
result.fromxml(response);
reportcosttime(url, timecost, result); //测速上报
return result;
}
|
稍微需要注意下的地方就是几个默认参数的名字和别的方法不一样,比如appid和mch_id。转账中是mch_appid和mchid,红包中又叫wxappid和mch_id。然后注意到httpservice.post方法第三个参数是带true的。也就是会使用到证书。进入post方法中我们可以看到:
1
2
3
4
5
6
7
8
|
//是否使用证书
if (isusecert)
{
string path = httpcontext.current.request.physicalapplicationpath;
x509certificate2 cert = new x509certificate2(path + wxpayconfig.sslcert_path, wxpayconfig.sslcert_password);
request.clientcertificates.add(cert);
log.debug( "wxpayapi" , "postxml used cert" );
}
|
这里使用到了证书的路径和密码,密码即商户号。这一切准备好之后就可以controller中进行转账了:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[loginvalid]
public actionresult cashtransfers( string ordernumber)
{
//var order = new order(){amount = 1};
// var openid = "obsbmwqjqwjfzqlksfnjxflsixxx";
var user = _workcontext.currentuser;
var order = _paymentservice.getorderbyordernumber(ordernumber);
var transfer = new transferspay
{
openid = user.openid,
amount = ( int ) order.amount*100,
partner_trade_no = order.ordernumber,
re_user_name = "stoneniqiu" ,
spbill_create_ip = _webhelper.getcurrentipaddress()
};
var data = transfer.gettransfersapiparameters();
var result = wxpayapi.transfers(data);
return content(result.toprintstr());
}
|
得到结果
这样就实现了转账/提现的功能。
发布
在正式的环境中,我们需要先创建自己的订单,然后向微信请求转账,成功之后对自己的订单进行处理。cashtransfers方法稍作调整。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
[loginvalid]
public actionresult cashtransfers( string ordernumber)
{
var user = _workcontext.currentuser;
var order = _paymentservice.getorderbyordernumber(ordernumber);
if ( string .isnullorempty(user.openid))
{
return json( new portalresult( "请用微信登录!" ));
}
if (order == null || order.orderstate != orderstate.padding)
{
return json( new portalresult( "订单有误!" ));
}
var transfer = new transferspay
{
openid = user.openid,
amount = ( int ) order.amount*100,
partner_trade_no = order.ordernumber,
re_user_name = "stoneniqiu" ,
spbill_create_ip = _webhelper.getcurrentipaddress()
};
var data = transfer.gettransfersapiparameters();
var result = wxpayapi.transfers(data);
if (result.getvalue( "result_code" ).tostring() == "success" )
{
return json( new portalresult( true , "提现成功" ));
}
return json( new portalresult( false , result.getvalue( "return_msg" ).tostring()));
}
|
另外一个要注意的是,发布之后老是出现操作超时的错误,建议就是修改超时时间为30秒。默认的6秒容易超时。支付的时候也是。
public static wxpaydata transfers(wxpaydata inputdata, int timeout = 30)
如果企业账户的钱没了,会出现以下提示:
开发文档:https://pay.weixin.qq.com/wiki/doc/api/tools/mch_pay.php?chapter=14_2
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持服务器之家!
原文链接:http://www.cnblogs.com/stoneniqiu/p/6337525.html