微信小程序的支付与退款功能

本文介绍了微信小程序的支付功能,包括业务流程和关键步骤。从用户点击支付到调用微信统一下单API,再到前端使用预支付ID进行支付,最后处理微信的异步通知。同时强调了重要环节的日志记录和异常处理。
摘要由CSDN通过智能技术生成
微信支付

微信官方微信支付产品有付款码支付,JSAPI支付,Native支付,App支付,H5支付,小程序支付,人脸支付等不同的支付产品,在这里我们讲解微信小程序支付

  • 业务流程
    首先我们先看一下微信官方小程序支付文档所罗列的支付业务流程时序图
    在这里插入图片描述
    1、微信小程序用户进入产品详情页点击支付按钮
    2、调用小程序登陆API,返回用户openid
    3、商户系统处理订单业务
    4、调用微信统一下单API
    5、将微信返回的prepay_id配合其他数据再次签名,返回给前端
    6、前段用返回的参数,调用微信支付,返回支付结果
    7、微信异步通知商户支付结果
代码示例
<?php

namespace App\Http\Controllers\api;


class WeChatPay
{
   
    protected $app_id; //小程序 app id
    protected $app_secret;//小程序的 secret
    protected $mch_id;//小程序商户号
    protected $key;//商户号 key
    protected $notify_url;//支付回调地址
    protected $pay_url;//统一下单请求地址
    protected $trade_type;//支付交易类型
    protected $order;
    protected $sign_type;
    protected $refund_url;

    public function __construct($order)
    {
   
        $this->app_id = '';
        $this->app_secret = '';
        $this->key = '';
        $this->mch_id = '';
        $this->notify_url = '';
        $this->pay_url = 'https://api.mch.weixin.qq.com/pay/unifiedorder';
        $this->refund_url = 'https://api.mch.weixin.qq.com/secapi/pay/refund';
        $this->trade_type = 'JSAPI';
        $this->order = $order;
    }

    /**
     * 微信对外支付方法
     */
    public function pay()
    {
   
        //统一下单 返回与支付信息
        $pre_pay_id = $this->unifiedOrder($this->order);
        //再次签名
        $package = $this->signAgain($pre_pay_id);
        return $package;
    }

    //微信统一下单
    private function unifiedOrder($order)
    {
   
        $post_data = $this->getPayData($order);
        $wx_return_data = $this->httpCurl($post_data, $this->pay_url);
        $wx_return_data = $this->xmlToArray($wx_return_data);
        if ($wx_return_data['return_code'] == 'SUCCESS' && $wx_return_data['result_code'] == 'SUCCESS') {
   
            $pre_pay_id = $wx_return_data['prepay_id'];
            return $pre_pay_id;
        }
        //记录错误信息或者抛出异常
        Log::error('统一下单失败,微信返回信息:' . json_encode($wx_return_data));
        throw new \Exception($wx_return_data['return_msg'], 401);
    }

    //根据预下单id再次签名

    private function getPayData($order)
    {
   
        $params = 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值