search
HomeWeChat AppletWeChat DevelopmentUse EasyWechat to quickly develop WeChat public account payment

Preliminary preparation:

After applying for WeChat payment, you will receive 2 parameters, merchant id, and merchant key.
Note , these two parameters should not be confused with WeChat parameters.
WeChat parameters: appid, appkey, token
Payment parameters: merchant_id (merchant number), key( Payment key)
How to get the payment key?
Go to https://pay.weixin.qq.com -->Account Center--> API security-->Set API key
Set a 32-bit key by yourself

WeChat payment process:

1. Composer installs the EasyWechat package

Environment requirements:

  • ##PHP >= 5.5. 9

  • ##PHP cURL extension

  • PHP OpenSSL extension

Installation:

composer require overtrue/wechat:~3.1 -vvv

2. Public Number configuration

2.1, Configure payment directory and authorized domain name ##2.2. Configure web page authorization

## 3. Initialize the SDK and create an EasyWeChat\Foundation\Application

instance

<?php
use EasyWeChat\Foundation\Application;protected $app=null;public function construct(){   
$options = [   /**
     * Debug 模式,bool 值:true/false
     *
     * 当值为 false 时,所有的日志都不会记录     */
    &#39;debug&#39;  => true,    /**
     * 账号基本信息,请从微信公众平台/开放平台获取     */
    &#39;app_id&#39;  => &#39;your-app-id&#39;,         // AppID
    &#39;secret&#39;  => &#39;your-app-secret&#39;,     // AppSecret
    &#39;token&#39;   => &#39;your-token&#39;,          // Token
    &#39;aes_key&#39; => &#39;&#39;,                    // EncodingAESKey,安全模式下请一定要填写!!!

    /**
     * 日志配置
     *
     * level: 日志级别, 可选为:
     *         debug/info/notice/warning/error/critical/alert/emergency
     * permission:日志文件权限(可选),默认为null(若为null值,monolog会取0644)
     * file:日志文件位置(绝对路径!!!),要求可写权限     */
    &#39;log&#39; => [        &#39;level&#39;      => &#39;debug&#39;,
        &#39;permission&#39; => 0777,
        &#39;file&#39;       => &#39;/tmp/easywechat.log&#39;,
    ],    /**
     * OAuth 配置
     *
     * scopes:公众平台(snsapi_userinfo / snsapi_base),开放平台:snsapi_login
     * callback:OAuth授权完成后的回调页地址     */
    &#39;oauth&#39; => [        
            &#39;scopes&#39;   => [&#39;snsapi_userinfo&#39;],
        &#39;callback&#39; => &#39;/examples/oauth_callback.php&#39;,
    ],    /**
     * 微信支付     */
    &#39;payment&#39; => [        &#39;merchant_id&#39;        => &#39;your-mch-id&#39;,
        &#39;key&#39;                => &#39;key-for-signature&#39;,
        &#39;cert_path&#39;          => &#39;path/to/your/cert.pem&#39;, // XXX: 绝对路径!!!!
        &#39;key_path&#39;           => &#39;path/to/your/key&#39;,      // XXX: 绝对路径!!!!
        &#39;notify_url&#39;         => &#39;默认的订单回调地址&#39;,       // 你也可以在下单时单独设置来想覆盖它
        // &#39;device_info&#39;     => &#39;013467007045764&#39;,
        // &#39;sub_app_id&#39;      => &#39;&#39;,
        // &#39;sub_merchant_id&#39; => &#39;&#39;,
        // ...
    ],];$this->$app = new Application($options);
}
4. Get the payment object payment

$payment =$this->$app->payment;

5. Pass the order object order (order number, amount, openid) as parameters

<?phpuse EasyWeChat\Foundation\Application;use EasyWeChat\Payment\Order; 

$attributes = [ &#39;trade_type&#39; => &#39;JSAPI&#39;, // JSAPI,NATIVE,APP... &#39;body&#39; => &#39;iPad mini 16G 白色&#39;, &#39;detail&#39; => &#39;iPad mini 16G 白色&#39;,
&#39;out_trade_no&#39; => &#39;1217752501201407033233368018&#39;,//订单号 &#39;total_fee&#39; => 5388, // 单位:分 &#39;notify_url&#39; => &#39;http://xxx.com/order-notify&#39;, // 支付结果通知网址,如果不设置则会使用配置里的默认地址 &#39;openid&#39; => &#39;当前用户的 openid&#39;, // trade_type=JSAPI,此参数必传,用户在商户appid下的唯一标识, // ... ]; $order = new Order($attributes);

6. Preprocessing, get A preprocessing id, payment->prepare(order);

$result = $payment->prepare($order);
if ($result->return_code == &#39;SUCCESS&#39; && $result->result_code == &#39;SUCCESS&#39;){    
$prepayId = $result->prepay_id;
}

7. Generate payment JS configuration

$json = $payment->configForPayment($prepayId); // 返回 json 字符串,如果想返回数组,传第二个参数 false

8. Will Write the order number and json into the user's payment confirmation template, trigger the js, and call up the payment

return view(&#39;done&#39;,[&#39;order&#39;=>$ordersn,&#39;json&#39;=>$json]);
<script>$(&#39;form&#39;).submit (function() {
WeixinJSBridge.invoke(&#39;getBrandWCPayRequest&#39;, {!!$json!!},function(res){if(res.err_msg == "get_brand_wcpay_request:ok" ) {// 使用以上方式判断前端返回,微信团队郑重提示:
// res.err_msg将在用户支付成功后返回
// ok,但并不保证它绝对可靠。          }
      }
);return false;
});</script>

9. Successful callback

in the user After successful payment, the WeChat server will initiate a POST request to the callback URL set in the order, and the content of the request is an XML.

First configure the paid method in the middleware VerifyCsrfToken without going through CSRF verification

   public function paid(){$response =$this->$app->payment->handleNotify(function($notify, $successful){    // 使用通知里的 "微信支付订单号" 或者 "商户订单号" 去自己的数据库找到订单
    $order = 查询订单($notify->out_trade_no); 
    if (!$order) { // 如果订单不存在
        return &#39;Order not exist.&#39;; // 告诉微信,我已经处理完了,订单没找到,别再通知我了    }    // 如果订单存在
    // 检查订单是否已经更新过支付状态
    if ($order->paid_at) { // 假设订单字段“支付时间”不为空代表已经支付
        return true; // 已经支付成功了就不再更新了    }    // 用户是否支付成功
    if ($successful) {        // 不是已经支付状态则修改为已经支付状态
        $order->paid_at = time(); // 更新支付时间为当前时间
        $order->status = &#39;paid&#39;;
    } else { // 用户支付失败
        $order->status = &#39;paid_fail&#39;;
    }    $order->save(); // 保存订单
    return true; // 返回处理完成});
    return $response;
}

The above is the detailed content of Use EasyWechat to quickly develop WeChat public account payment. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
我创建了一个由 ChatGPT API 提供支持的语音聊天机器人,方法请收下我创建了一个由 ChatGPT API 提供支持的语音聊天机器人,方法请收下Apr 07, 2023 pm 11:01 PM

今天这篇文章的重点是使用 ChatGPT API 创建私人语音 Chatbot Web 应用程序。目的是探索和发现人工智能的更多潜在用例和商业机会。我将逐步指导您完成开发过程,以确保您理解并可以复制自己的过程。为什么需要不是每个人都欢迎基于打字的服务,想象一下仍在学习写作技巧的孩子或无法在屏幕上正确看到单词的老年人。基于语音的 AI Chatbot 是解决这个问题的方法,就像它如何帮助我的孩子要求他的语音 Chatbot 给他读睡前故事一样。鉴于现有可用的助手选项,例如,苹果的 Siri 和亚马

教你用EasyWeChat和PHP构建微信小程序的投票功能教你用EasyWeChat和PHP构建微信小程序的投票功能Jul 18, 2023 am 09:53 AM

教你用EasyWeChat和PHP构建微信小程序的投票功能引言:随着微信小程序的流行,越来越多的企业开始尝试开发自己的小程序来与用户进行交互。其中,投票功能是一个非常常见且有趣的应用场景。本文将教大家如何使用EasyWeChat和PHP来构建微信小程序的投票功能,并提供相应的代码示例。一、EasyWeChat简介EasyWeChat是一个基于PHP的微信开发

摔倒检测-完全用ChatGPT开发,分享如何正确地向ChatGPT提问摔倒检测-完全用ChatGPT开发,分享如何正确地向ChatGPT提问Apr 07, 2023 pm 03:06 PM

哈喽,大家好。之前给大家分享过摔倒识别、打架识别​,今天以摔倒识别​为例,我们看看能不能完全交给ChatGPT来做。让ChatGPT​来做这件事,最核心的是如何向ChatGPT​提问,把问题一股脑的直接丢给ChatGPT​,如:用 Python 写个摔倒检测代码 是不可取的, 而是要像挤牙膏一样,一点一点引导ChatGPT​得到准确的答案,从而才能真正让ChatGPT提高我们解决问题的效率。今天分享的摔倒识别​案例,与ChatGPT​对话的思路清晰,代码可用度高,按照GPT​返回的结果完全可以开

EasyWeChat和PHP开发微信小程序的社区功能实现技巧EasyWeChat和PHP开发微信小程序的社区功能实现技巧Jul 18, 2023 pm 09:39 PM

EasyWeChat和PHP开发微信小程序的社区功能实现技巧随着微信小程序的不断发展,越来越多的企业和开发者开始关注和使用微信小程序。微信小程序提供了丰富的开发接口和功能,使得开发者能够轻松构建出各种各样的应用程序。其中,社区功能是微信小程序中非常常见且重要的一种功能,它能够让用户进行交流、分享和互动,提升用户体验和粘性。本文将介绍如何使用EasyWeCha

EasyWeChat和PHP开发微信小程序的微信支付功能实现指南EasyWeChat和PHP开发微信小程序的微信支付功能实现指南Jul 18, 2023 pm 03:12 PM

EasyWeChat和PHP开发微信小程序的微信支付功能实现指南在当前移动互联网时代,微信支付已经成为了一种非常流行的支付方式。对于开发微信小程序的开发者来说,实现微信支付功能是非常重要的一部分,通过微信支付可以为小程序带来更好的商业价值。本指南将介绍如何使用EasyWeChat和PHP来开发微信小程序的微信支付功能。一、了解EasyWeChatEasyWe

EasyWeChat和PHP开发微信小程序的文件上传和下载功能实现指南EasyWeChat和PHP开发微信小程序的文件上传和下载功能实现指南Jul 18, 2023 pm 04:21 PM

EasyWeChat(简称ECW)是一个基于PHP的微信开发工具包,它为开发者提供了一系列方便的API接口,用于开发微信公众号、微信小程序等应用。在本文中,我们将介绍如何使用EasyWeChat和PHP开发微信小程序的文件上传和下载功能。首先,我们需要在EasyWeChat中配置小程序的相关信息,并获取到小程序的appID和appSecret。具体配置方法可

使用EasyWeChat和PHP开发微信小程序的电子商务功能使用EasyWeChat和PHP开发微信小程序的电子商务功能Jul 19, 2023 am 09:31 AM

使用EasyWeChat和PHP开发微信小程序的电子商务功能近年来,随着微信小程序的快速发展,越来越多的企业开始将其作为电子商务的重要渠道。为了实现微信小程序的电子商务功能,我们可以使用EasyWeChat和PHP开发工具来搭建一个完整的电商平台。本文将介绍如何使用EasyWeChat和PHP来开发微信小程序的电子商务功能,并提供一些代码示例供参考。搭建环境

使用EasyWeChat和PHP开发微信小程序的图片上传功能使用EasyWeChat和PHP开发微信小程序的图片上传功能Jul 19, 2023 pm 06:33 PM

使用EasyWeChat和PHP开发微信小程序的图片上传功能随着微信小程序的兴起,越来越多的开发者开始关注微信小程序的开发。其中,图片上传是微信小程序中非常常见且重要的功能之一。本文将介绍如何使用EasyWeChat和PHP来开发微信小程序的图片上传功能。首先,我们需要了解EasyWeChat和PHP分别是什么。EasyWeChat是一个基于PHP的微信公众

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment