WeChat Pay——Scan QR code to pay
Personally, I think scanning code payment is much smoother in terms of development and use than Jsapi payment. When you scan the QR code to pay, you don’t have to worry about accessing via PC, mobile browser or WeChat client. Just generate a QR code and scan it to pay.
For some configuration and code SDK and errors in the SDK, please refer to the previous article WeChat Pay Articles
WeChat Payment - Detailed explanation of official account payment code
Friendly reminder that the following content is very simple - -# If you have run through Jsapi payment, then there is nothing special about scanning the QR code to pay.
The file for scanning the QR code to initiate payment is in the native.php file in the example SDK.
There are two payment methods for scan code payment. Before using scan code payment, you must configure the specific configuration of payment callback URL. Reference
WeChat developer documentation http://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=6_3
Introduction to two payment methods
Mode 1: http://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=6_4
Mode 2: http://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=6_5
In fact, mode 2 does not need to set a callback URL. However, once you modify the payment configuration and use scan code payment, you must check Native payment. At this time, the callback URL is required.
But I only want to use mode 2. There is no callback URL in mode 2, so I have to randomly write a URL that may be used in mode 1 in the future.
Code analysis:
Scan code payment mode 1
$notify = new NativePay(); $url1 = $notify->GetPrePayUrl("123456789");
$input = new WxPayUnifiedOrder(); $input->SetBody("test"); $input->SetAttach("test"); $input->SetOut_trade_no(WxPayConfig::MCHID.date("YmdHis")); $input->SetTotal_fee("1"); $input->SetTime_start(date("YmdHis")); $input->SetTime_expire(date("YmdHis", time() + 600)); $input->SetGoods_tag("test"); $input->SetNotify_url("http://paysdk.weixin.qq.com/example/notify.php"); $input->SetTrade_type("NATIVE"); $input->SetProduct_id("123456789"); $result = $notify->GetPayUrl($input); $url2 = $result["code_url"];
QR code:
<img alt="模式二扫码支付" src="http://paysdk.weixin.qq.com/example/qrcode.php?data=<?php echo urlencode($url2);?>" style="width:150px;height:150px;"/>
The function is defined in the example/Wxpay.NativePay.php file
public function GetPayUrl($input) { if($input->GetTrade_type() == "NATIVE") { $result = WxPayApi::unifiedOrder($input); return $result; } }
$result = WxPayApi::unifiedOrder($input);
if($inputObj->GetTrade_type() == "JSAPI" && !$inputObj->IsOpenidSet()){ throw new WxPayException("统一支付接口中,缺少必填参数openid!trade_type为JSAPI时,openid为必填参数!"); } if($inputObj->GetTrade_type() == "NATIVE" && !$inputObj->IsProduct_idSet()){ throw new WxPayException("统一支付接口中,缺少必填参数product_id!trade_type为JSAPI时,product_id为必填参数!"); }
Determine the payment method, if it is JsApi method, Openid is required
The Native method must require product_id. By the way, let’s make another complaint to determine whether it is a Native payment method. The lack of product_id prompt turns out to be JSAPI required product_id.
Alas, I really can’t be sloppy anymore. The SDK can be written in such a sloppy way.
After that, the unified ordering interface process is called.
After the function is executed, a link starting with weixin:// will be returned, and then the phpqrcode program can be called to generate the QR code.
The payment result processing page can still use the processing logic in the notify.php file.
Further reading:
WeChat payment scan code payment (java version native payment)
WeChat payment development process
The latest version of WeChat Payment JS-SDK, starting from 0
iOS-About WeChat Pay
The above introduces WeChat payment - scan code payment, including aspects of it. I hope it will be helpful to friends who are interested in PHP tutorials.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

In this chapter, we are going to learn the following topics related to routing ?

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

Validator can be created by adding the following two lines in the controller.
