84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
最近在用php开发微信的商家向个人付款的东西,文档里说到要下证书,接着就没东西了。<return_msg><![CDATA[证书出错,请登录微信支付商户平台下载证书]]></return_msg>我现在停在这里,并且下载了证书,下面要怎么做呢?有做过的朋友吗?
认证0级讲师
https://pay.weixin.qq.com/
微信商户平台。
你不会开发了很久还不知道微信支付还有商户平台吧?那你们的流水不查的吗?
之前开发过这个,登录https://pay.weixin.qq.com/ 下载证书文件,放在服务器上,然后代码引用就可以了
//文件地址 $certPath = 'xxx'; $keyPath = 'xxx'; $ch = curl_init(); curl_setopt($ch,CURLOPT_TIMEOUT,60); curl_setopt($ch,CURLOPT_URL,'https://api.mch.weixin.qq.com/mmpaymkttransfers/promotion/transfers'); curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,false); curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,false); curl_setopt($ch,CURLOPT_SSLCERTTYPE,'PEM'); curl_setopt($ch,CURLOPT_SSLCERT,$certPath); curl_setopt($ch,CURLOPT_SSLKEYTYPE,'PEM'); curl_setopt($ch,CURLOPT_SSLKEY,$keyPath); curl_setopt($ch,CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml')); curl_setopt($ch,CURLOPT_POST, 1); curl_setopt($ch,CURLOPT_POSTFIELDS,$xml); $data = curl_exec($ch);
我用的是 sdk包它里面需要配置证书的地址
//证书路径,注意应该填写绝对路径 'sslcert_path' => public_path().'/Static/certificate/wxxxxxxxxxxxxxxx/apiclient_cert.pem', 'sslkey_path' => public_path().'/Static/certificate/wxxxxxxxxxxxxxxx/apiclient_key.pem',
你看下你的代码哪里可以配置地址把,这两个证书是在商户平台下载的。
数据要经过证书加密,不是直接有sdk用吗。
https://pay.weixin.qq.com/
微信商户平台。
你不会开发了很久还不知道微信支付还有商户平台吧?那你们的流水不查的吗?
之前开发过这个,登录https://pay.weixin.qq.com/ 下载证书文件,放在服务器上,然后代码引用就可以了
我用的是 sdk包
它里面需要配置证书的地址
你看下你的代码哪里可以配置地址把,这两个证书是在商户平台下载的。
数据要经过证书加密,不是直接有sdk用吗。