十一、微信扫码支付

2018-03-07  本文已影响81人  yuzhan550

1. 下载PHP的sdk:

https://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=11_1

2. 修改配置参数:

APPID是在开户邮件里
MCHID【商户号】是在邮件或者商户平台
KEY【商户支付密钥】是在https://pay.weixin.qq.com/index.php/account/api_cert或者如下图(推荐下下图):[在商户平台里设置,字母+数字,否则容易出现签名错误的bug]

KEY的位置

或者如下图:(推荐)


image.png

APPSECRET:在微信公众平台,具体位置如下图:【扫码支付其实并不需要APPSECRET,也不需要在微信支付里设置授权目录,证书好像也不需要】


image.png

并设置IP白名单:

3. 添加自己为开发者:

先关注该公众号




image.png

4. 下载证书:

不要用谷歌浏览器登录商户平台,操作证书安了之后还是说没安,一般用360浏览器,但是会出现证书无法下载的问题,最后用IE浏览器给证书下下来了。
页面:在上边的【账户中心】->【API安全】的page里下载。
把证书上传到服务器,然后填写绝对路径

5. 修复微信sdk:

image.png
require_once "WxPay.Api.php";
image.png
require_once __DIR__."/../lib/WxPay.Api.php";

6. 此时QR CODE 可以出来了

image.png

7. 流程:

image.png

参考博客1:https://www.cnblogs.com/jiqing9006/p/5872729.html
参考博客2:【推荐】http://www.cnblogs.com/itxiongwei/p/5531053.html
参考博客3: https://segmentfault.com/a/1190000012051393

8. 具体代码:

A. 直接用下边这个native.php替换微信官方给的sdk的example里的同名文件

native.php

<?php
ini_set('date.timezone','Asia/Shanghai');
//error_reporting(E_ERROR);

require_once "../lib/WxPay.Api.php";
require_once "WxPay.NativePay.php";
require_once 'log.php';

//模式二
/**
 * 流程:
 * 1、调用统一下单,取得code_url,生成二维码
 * 2、用户扫描二维码,进行支付
 * 3、支付完成之后,微信服务器会通知支付成功
 * 4、在支付成功通知中需要查单确认是否真正支付成功(见:notify.php)
 */

$out_trade_no = WxPayConfig::MCHID.date("YmdHis");

$input = new WxPayUnifiedOrder();
$input->SetBody("This is body");
$input->SetAttach("test");
$input->SetOut_trade_no($out_trade_no);
//echo WxPayConfig::KEY;die;
$input->SetTotal_fee("1");
$input->SetTime_start(date("YmdHis"));
$input->SetTime_expire(date("YmdHis", time() + 600));
$input->SetGoods_tag("test");
$input->SetNotify_url("http://jinling.veyd.cn/home/WXSDK0308/example/native_notify.php"); // 改成自己的native_notify.php文件所在的位置,后台不能带有参数
$input->SetTrade_type("NATIVE");
$input->SetProduct_id("123456789");
//echo '<pre>';
//print_r($input);die;
$notify = new NativePay();
$result = $notify->GetPayUrl($input);
//echo '<pre>';
//print_r($result);die;
$url2 = $result["code_url"];
?>

<html>
<head>
    <meta http-equiv="content-type" content="text/html;charset=utf-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1" /> 
    <title>微信扫码</title>
</head>
<body>

    <div style="margin-left: 10px;color:#556B2F;font-size:30px;font-weight: bolder;">扫描支付模式二</div><br/>
    <img alt="模式二扫码支付" src="http://paysdk.weixin.qq.com/example/qrcode.php?data=<?php echo urlencode($url2);?>" style="width:150px;height:150px;"/>
    <div>订单号:<span id="out_trade_no"><?php echo $out_trade_no;?></span></div>
    <div id="myDiv">AAA</div>
    <span id="timer">0</span>秒

    <script src="jquery-3.1.1.min.js"></script>
    <script>
        // 检测是否支付成功
        //$(document).ready(function () {
            //setInterval("ajaxstatus()", 3000);
            var myIntval = setInterval("load()", 1000);
            function load(){
                document.getElementById("timer").innerHTML=parseInt(document.getElementById("timer").innerHTML)+1;
                var xmlhttp;
                if (window.XMLHttpRequest){
                    // code for IE7+, Firefox, Chrome, Opera, Safari
                    xmlhttp=new XMLHttpRequest();
                }else{
                    // code for IE6, IE5
                    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
                }
                xmlhttp.onreadystatechange=function(){
                    if (xmlhttp.readyState==4 && xmlhttp.status==200){
                        trade_state=xmlhttp.responseText;
                        console.log(trade_state);
                        //return;
                        if(trade_state=='SUCCESS'){
                            document.getElementById("myDiv").innerHTML='支付成功';
                            //document.getElementById('green').style.background="green";
                            //alert(transaction_id);
                            //延迟3000毫秒执行tz() 方法
                            clearInterval(myIntval);
                            setTimeout(function(){tz()},3000);
                            function tz(){
                                window.location.href="success.php";
                            }
                        }else if(trade_state=='REFUND'){
                            document.getElementById("myDiv").innerHTML='转入退款';
                        }else if(trade_state=='NOTPAY'){
                            document.getElementById("myDiv").innerHTML='请扫码支付';

                        }else if(trade_state=='CLOSED'){
                            document.getElementById("myDiv").innerHTML='已关闭';
                        }else if(trade_state=='REVOKED'){
                            document.getElementById("myDiv").innerHTML='已撤销';
                        }else if(trade_state=='USERPAYING'){
                            document.getElementById("myDiv").innerHTML='用户支付中';
                        }else if(trade_state=='PAYERROR'){
                            document.getElementById("myDiv").innerHTML='支付失败';
                            clearInterval(myIntval);
                        }

                    }
                };
                //orderquery.php 文件返回订单状态,通过订单状态确定支付状态
                //xmlhttp.open("POST","orderquery.php",true);
                xmlhttp.open("POST","orderquery.php",false);
                //下面这句话必须有
                //把标签/值对添加到要发送的头文件。
                xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
                xmlhttp.send("out_trade_no=<?php echo $out_trade_no;?>");
            }
        //});
    </script>
</body>
</html>

B. 同上边,替换sdk中的这个文件:

orderquery.php

<?php
    ini_set('date.timezone','Asia/Shanghai');
    error_reporting(E_ERROR);
    require_once "../lib/WxPay.Api.php";
    require_once 'log.php';

    //初始化日志
    $logHandler= new CLogFileHandler("./logs/".date('Y-m-d').'.log');
    $log = Log::Init($logHandler, 15);

    function printf_info($data)
    {
        foreach($data as $key=>$value){
            echo "<font color='#f00;'>$key</font> : $value <br/>";
        }
    }


    if(isset($_REQUEST["transaction_id"]) && $_REQUEST["transaction_id"] != ""){
        $transaction_id = $_REQUEST["transaction_id"];
        $input = new WxPayOrderQuery();
        $input->SetTransaction_id($transaction_id);
        //printf_info(WxPayApi::orderQuery($input));
        $result=WxPayApi::orderQuery($input);
        echo $result['trade_state'];
        exit();
    }

    if(isset($_REQUEST["out_trade_no"]) && $_REQUEST["out_trade_no"] != ""){
        $out_trade_no = $_REQUEST["out_trade_no"];
        $input = new WxPayOrderQuery();
        $input->SetOut_trade_no($out_trade_no);
        //printf_info(WxPayApi::orderQuery($input));
        $result=WxPayApi::orderQuery($input);
        echo $result['trade_state'];
        exit();
    }

C. 新建success.phpexample文件夹中:

success.php

<meta charset="UTF-8">
<h1>微信支付成功</h1>

終了

上一篇下一篇

猜你喜欢

热点阅读