search
HomeBackend DevelopmentPHP TutorialFollow the trend ~ My store has connected to WeChat payment, follow the trend of the shop_PHP tutorial

Fashionable~ My store has access to WeChat payment, and it’s a fashionable shop

1. What to say first

1. The opening date of WeChat payment for our official account is September 22, so the applicable document version number is v3.3.6. At that time, I accidentally got a v2.7 document from WeChat customer service, and I was so excited For a day, I crawled out of puddles and fell into urine puddles, which made people miserable. Only when I found the relevant people later did I get the truth. But now it can also be downloaded on the public platform~ I hope everyone can avoid this pit. !

2. The most important point: This article is suspected of being a soft advertisement, please read with caution! Help your friends to write comments here first~~~

2. You need to go to these places to pick up the parameters

1. Log in to the WeChat public account management backend mp.weixin.qq.com, find the Developer Center in the left menu bar, click on the picture below to see the AppID and AppSecret:

2. After WeChat payment is approved, Tenpay will send 3 emails to the applicant’s mailbox. My family previously opened an account through Tenpay for the main site payment interface, but this A new Tenpay account was issued this time, but what is surprising is that this time WeChat payment does not require a deposit. I don’t know why?

Click on the email from weixinpay to see the account information. Download and save the pem format file in the attachment to the web server. Please note the absolute path of the file, which will be used in the following code:

3. Log in to the WeChat merchant platform (mch.weixin.qq.com) and set the merchant payment key Key:

 4. Log in to the WeChat public account management backend mp.weixin.qq.com, set up payment configuration, payment test, payment whitelist

3. Find the parameters to configure the class class WxPayConf

class WxPayConf

{

//=======[Basic information settings]================== ===================

//The unique identifier of the WeChat official account. After passing the review, check

in the email sent by WeChat

const APPID = "Fill in the AppID" seen in 1;

//AcceptorID, Identity Identification

const MCHID = "Fill in the MCHID" seen in 2, 2;

//Merchant Payment KeyKey. After passing the review, check ( in the email sent by WeChat. If there is no , , you can log in to the WeChat merchant platform to set up )

const KEY = "Fill in the key set in 2. 3";

//JSAPIObtain openid. After review, you can view

const APPSECRET = "Fill in the AppSecret" seen in 2. 1;

//=======[JSAPIPath Settings]====== =============================

//Get access_tokenJump in the process uri, by jumping Pass code into jsapipayment page

const JS_API_CALL_URL = "http://www.xxx.com/wxpay/js_api_call.php";

//=======[Certificate path setting]================== ===================

//Certificate path,Note that the absolute path should be filled in

const SSLCERT_PATH = "Fill in the pem files downloaded from 22 The path placed on the server ";

const SSLKEY_PATH = "Fill in the pem files downloaded from 22 The path placed on the server ";

//=======[Asynchronous notificationurlSettings]===== ==============================

//Asynchronous notificationurl, the merchant sets it according to the actual development process

const NOTIFY_URL = http://www.xxxx.com/wxpay/notify_url.php;

}

4. JSAPI payment

WeChat JS API can only be used in WeChat’s built-in browser, and calls from other browsers are invalid.

The following code is the JS API payment demo officially provided by WeChat

include_once("WxPayHelper/WxPayHelper.php");

//使用jsapi接口
$jsApi = new JsApi();

//=========步骤1:网页授权获取用户openid============
//通过code获得openid
if(!isWeixin()){
	echo "请在微信内扫描二维码";
	exit;
}
if (!isset($_GET['code']))
{
	//触发微信返回code码
	$url = $jsApi->createOauthUrlForCode(WxPayConf::JS_API_CALL_URL.");
	Header("Location: $url");
}else
{
	//获取code码,以获取openid
	$code = $_GET['code'];
	$jsApi->setCode($code);
	$openid = $jsApi->getOpenId();
	}
	if(empty($order)){
		echo "数据错误!";
		exit;
	}
}


//=========步骤2:使用统一支付接口,获取prepay_id============
//使用统一支付接口
$unifiedOrder = new UnifiedOrder();

//设置统一支付接口参数
//设置必填参数
//appid已填,商户无需重复填写
//mch_id已填,商户无需重复填写
//noncestr已填,商户无需重复填写
//spbill_create_ip已填,商户无需重复填写
//sign已填,商户无需重复填写
$unifiedOrder->setParameter("openid","$openid");//商品描述
$unifiedOrder->setParameter("body","test");//商品描述
//自定义订单号,此处仅作举例
$timeStamp = time();
$out_trade_no = timeStamp;
$total_fee = 1;
$unifiedOrder->setParameter("out_trade_no","$out_trade_no");//商户订单号
$unifiedOrder->setParameter("total_fee",$total_fee);//总金额
$unifiedOrder->setParameter("notify_url",WxPayConf::NOTIFY_URL);//通知地址
$unifiedOrder->setParameter("trade_type","JSAPI");//交易类型
//非必填参数,商户可根据实际情况选填
//$unifiedOrder->setParameter("sub_mch_id","XXXX");//子商户号
//$unifiedOrder->setParameter("device_info","XXXX");//设备号
//$unifiedOrder->setParameter("attach","XXXX");//附加数据
//$unifiedOrder->setParameter("time_start","XXXX");//交易起始时间
//$unifiedOrder->setParameter("time_expire","XXXX");//交易结束时间
//$unifiedOrder->setParameter("goods_tag","XXXX");//商品标记
//$unifiedOrder->setParameter("openid","XXXX");//用户标识
//$unifiedOrder->setParameter("product_id","XXXX");//商品ID

$prepay_id = $unifiedOrder->getPrepayId();
//=========步骤3:使用jsapi调起支付============
$jsApi->setPrepayId($prepay_id);

$jsApiParameters = $jsApi->getParameters();

function isWeixin(){
	$agent = strtolower($_SERVER['HTTP_USER_AGENT']);
	$is_weixin = strpos($agent, 'micromessenger') ? true : false ;
	if($is_weixin){
		return true;
	}else{
		return false;
	}
}
?>

<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>微信安全支付</title>

<script type="text/javascript">

		//调用微信JS api 支付
		function jsApiCall()
		{
			WeixinJSBridge.invoke(
				'getBrandWCPayRequest',
				<?php echo $jsApiParameters; ?>,
				function(res){
					WeixinJSBridge.log(res.err_msg);
					//alert(res.err_code+res.err_desc+res.err_msg);
				}
			);
		}
		
		function callpay()
		{
			if (typeof WeixinJSBridge == "undefined"){
			    if( document.addEventListener ){
			        document.addEventListener('WeixinJSBridgeReady', jsApiCall, false);
			    }else if (document.attachEvent){
			        document.attachEvent('WeixinJSBridgeReady', jsApiCall); 
			        document.attachEvent('onWeixinJSBridgeReady', jsApiCall);
			    }
			}else{
			    jsApiCall();
			}
		}
	</script>
</head>
<body onload="">
</br>
</br>
</br>
</br>
<div align="center">
<button
	style="width: 210px; height: 30px; background-color: #FE6714; border: 0px #FE6714 solid; cursor: pointer; color: white; font-size: 16px;"
	type="button" onclick="callpay()">贡献一下</button>
</div>
</body>

</html> 

Modify the WeChat payment parameters to those you applied for, then upload the webpage to the WeChat payment directory, Use the public account Reply the web address to the test account. Users can realize a JS API payment.

5. NATIVE payment

Using the official demo, the native payment mode 2 is completed

The following code is provided by WeChat official naticepayment demo

include_once("WxPayHelper/WxPayHelper.php");

//使用统一支付接口
	$unifiedOrder = new UnifiedOrder();
	
	//设置统一支付接口参数
	//设置必填参数
	//appid已填,商户无需重复填写
	//mch_id已填,商户无需重复填写
	//noncestr已填,商户无需重复填写
	//spbill_create_ip已填,商户无需重复填写
	//sign已填,商户无需重复填写
	$unifiedOrder->setParameter("body","贡献一分钱");//商品描述
	//自定义订单号,此处仅作举例
	$timeStamp = time();
	$out_trade_no = WxPayConf::APPID."$timeStamp";
	$unifiedOrder->setParameter("out_trade_no","$out_trade_no");//商户订单号 
	$unifiedOrder->setParameter("total_fee","1");//总金额
	$unifiedOrder->setParameter("notify_url",WxPayConf::NOTIFY_URL);//通知地址 
	$unifiedOrder->setParameter("trade_type","NATIVE");//交易类型
	//非必填参数,商户可根据实际情况选填
	//$unifiedOrder->setParameter("sub_mch_id","XXXX");//子商户号  
	//$unifiedOrder->setParameter("device_info","XXXX");//设备号 
	//$unifiedOrder->setParameter("attach","XXXX");//附加数据 
	//$unifiedOrder->setParameter("time_start","XXXX");//交易起始时间
	//$unifiedOrder->setParameter("time_expire","XXXX");//交易结束时间 
	//$unifiedOrder->setParameter("goods_tag","XXXX");//商品标记 
	//$unifiedOrder->setParameter("openid","XXXX");//用户标识
	//$unifiedOrder->setParameter("product_id","XXXX");//商品ID
	
	//获取统一支付接口结果
	$unifiedOrderResult = $unifiedOrder->getResult();
	
	//商户根据实际情况设置相应的处理流程
	if ($unifiedOrderResult["return_code"] == "FAIL") 
	{
		//商户自行增加处理流程
		echo "通信出错:".$unifiedOrderResult['return_msg']."<br>";
	}
	elseif($unifiedOrderResult["result_code"] == "FAIL")
	{
		//商户自行增加处理流程
		echo "错误代码:".$unifiedOrderResult['err_code']."<br>";
		echo "错误代码描述:".$unifiedOrderResult['err_code_des']."<br>";
	}
	elseif($unifiedOrderResult["code_url"] != NULL)
	{
		//从统一支付接口获取到code_url
		$code_url = $unifiedOrderResult["code_url"];
		//商户自行增加处理流程
		//......
	}

?>


<!DOCTYPE HTML>
<html>
<head>
	<meta charset="UTF-8">
	<title>微信安全支付</title>
</head>
<body>
	<div align="center" id="qrcode">
	</div>
	<div align="center">
		<p>订单号:<?php echo $out_trade_no; ?></p>
	</div>
	<div align="center">
		<form  action="./order_query.php" method="post">
			<input name="out_trade_no" type='hidden' value="<?php echo $out_trade_no; ?>">
		    <button type="submit" >查询订单状态</button>
		</form>
	</div>
	<br>
	<div align="center">
		<form  action="./refund.php" method="post">
			<input name="out_trade_no" type='hidden' value="<?php echo $out_trade_no; ?>">
			<input name="refund_fee" type='hidden' value="1">
		    <button type="submit" >申请退款</button>
		</form>
	</div>
	<br>
	<div align="center">
		<a href="../index.php">返回首页</a>
	</div>
</body>
	<script src="./qrcode.js"></script>
	<script>
		if(<?php echo $unifiedOrderResult["code_url"] != NULL; ?>)
		{
			var url = "<?php echo $code_url;?>";
			//参数1表示图像大小,取值范围1-10;参数2表示质量,取值范围'L','M','Q','H'
			var qr = qrcode(10, 'M');
			qr.addData(url);
			qr.make();
			var wording=document.createElement('p');
			wording.innerHTML = "扫我,扫我";
			var code=document.createElement('DIV');
			code.innerHTML = qr.createImgTag();
			var element=document.getElementById("qrcode");
			element.appendChild(wording);
			element.appendChild(code);
		}
	</script>
</html>

6. Problems in calling WxPayHelper.php

During development, the wxPayHeler.php provided by the official demo had some problems, resulting in a sign error.

You need to modify 3 when using jpapi to pay

You can check whether you need to modify it according to the version you downloaded

Post the modified code here

Congratulations~ You have the super endurance to read this stinky article -_-. If you think it is a little bit helpful to you, please don’t like it. Save that point. If you can, please visit our store (www.wsyu.com) and prepare a beautiful necklace and bracelet for your girlfriend (I always firmly believe that programmers have girlfriends!!!) Or an anklet, once she’s happy, you won’t have to masturbate at night!

Or follow our official account:

We are currently working on the WeChat store interface. Welcome to join the group: 204689062 for discussion~

How much does WeChat charge?

I don’t really like to follow trends. While everyone has been using WeChat to send information, I still stick to the usual communication methods, phone calls, text messages and emails. This is not because I don’t accept new things, because I know that in the process of information transmission, the more intermediate links there are, the worse the security of the information. Fetion is not as good as text messages, text messages are not as good as phone calls, mobile phones are not as good as landlines, and landlines are not as good as face-to-face meetings. It is better to chat at home than in a cafe. When the government strictly requires the real-name system on the Internet, WeChat records your mobile phone number, location, and your relatives and friends. . . When all are caught in one fell swoop, any “real-name system” will pale in comparison. Something like this happened when I was using Fetion: The Fetion system recommended my ex-girlfriend’s number to my wife: You two have a common friend. After being deceived by friends, you can see that all the friends around you are using WeChat to contact you about playing games and other matters. If you don’t add WeChat, they won’t take you to play. So, I also changed my mobile phone and logged into WeChat. Unexpectedly, when I went on a date with a friend to play ball for the first time after using WeChat, I received rumors that WeChat would charge a fee. When I looked online, I found that the issue of WeChat charging has already become a hot mess: Tencent, the manufacturer of WeChat, hurriedly came out to refute the rumors; the chairman of China Mobile, who was directly impacted by WeChat, also went shirtless and talked about "WeChat and other OTT services have indeed caused Miao Wei, the competent government department and Minister of the Ministry of Industry and Information Technology, publicly stated that the Ministry of Industry and Information Technology is currently coordinating the operators' WeChat charges, and "charging fees other than data traffic is also reasonable"; official media that is consistent with the government They also found cases of foreign charges and exaggerated them; however, netizens who were accustomed to free services simply did not accept other charges other than data traffic charges. For a time, everyone was unanimously talking about "charges." Experts, whether they are charging or anti-charging, are using a lot of professional terms such as OTT (value-added services) and signaling channels to try to explain to everyone the rights and wrongs of WeChat. But apart from people in the industry who can understand these things, even I, who have been working in Beijing Postal Service for 8 years, can’t understand it. I once asked IT experts about this: You always say that WeChat occupies the signaling channel. If you think the signaling channel is congested, then use one of the other seven channels for signaling. Ridiculed by experts: Stop being a foreigner and use another channel for signaling? Wouldn't the voice be affected? ! Voice is the foundation of mobile operators! It can be seen that mobile operators have a love-hate relationship with data services. More data will inevitably impact traditional voice calls, and they are unwilling to give up traditional call traffic. Now they still stick to the voice position and ignore the general trend of data business development. If this continues, mobile operators may become the next Kodak. In fact, for WeChat's charging, there are not so many professional terms, and there is no need to find any theoretical basis or foreign experience. Whether to charge or not, and how much to charge, all depend on the game and consensus reached between the buyers and sellers providing goods and services. As far as WeChat is concerned, Tencent is the service provider, we are all users, and mobile operators are the intermediaries that deliver this service. Therefore, in this service chain, there can be three paid services: Charge 1: Tencent collects from users (seller relationship); Charge 2: Tencent pays to operators (seller intermediaries), Charge 3: Operators collect from users (Buyer's Agent). Among these three contingent charging items, the two items that are directly related to users are "Charging 1" and "Charging 3". "Charging 3" is already being collected, whether it is the total monthly subscription or calculation For traffic, users have already paid fees to the operators; for "Charge 1", Tencent has repeatedly stated that it will not charge fees at present. So, what do we as users have to worry about? What other bricks need to be thrown? Therefore, the only thing that needs to be discussed is "charge 2" - the access fee charged by operators to Tencent. Logically speaking, this charge is possible and appropriate. However, this must be done under fair conditions and without discrimination. Operators cannot only charge for Tencent’s WeChat, but must have a clear charging standard for all OTT products that operators access. That is to say, if Tencent WeChat charges fees, the same charging standards must be adopted for Skype, FeiChat, Yixin, etc. Of course, Tencent also has the right to choose not to pay for operator charges. For example, it may say no to a certain operator's charges and thus not use the network provided by that operator. In this way, since Tencent does not use the operator's network, Tencent may lose some WeChat users who use the operator's network. At the same time, the operator's data traffic business will be affected, and some For mobile phones...the rest of the text>>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/894768.htmlTechArticleFashionable ~ My store has access to WeChat payment, follow the fashion of the store 1. What to say first 1. Our public account The time to activate WeChat payment is September 22, so the applicable document version number is v3.3.6. At that time...
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
微信文件多久过期微信文件多久过期Nov 21, 2022 pm 02:12 PM

微信文件的过期时间需要根据情况来判断:1、如果发送的文件没有打开过,则在72小时以后微信系统会自动清理掉,即过了三天文件就会过期;2、如果已经查看了微信文件,但是并没有下载(当然已经下载的文件也是一样的),那么文件是可以保留180天的,在这180天以内随时都可以去下载。

微信拉黑和删除有什么区别微信拉黑和删除有什么区别Oct 18, 2022 am 11:29 AM

区别:1、拉黑后对话框从主页消失,但是聊天记录还在;删除后聊天记录全部消失不见了。2、拉黑后还能发给他,但是收不到他的消息;删除后不能发信息了。3、拉黑后双方都不可见彼此的朋友圈;删除对方以后,你看不到对方的朋友圈了,对方是否能看到你的,取决于设置(允许陌生人查看十张照片)与否,如果设置则可以看到朋友圈。

支持微信付款的购物平台有哪些支持微信付款的购物平台有哪些Nov 02, 2022 pm 02:44 PM

支持微信付款的购物平台有:1、京东,是中国的综合网络零售商;2、唯品会,是一家在线销售品牌折扣商品的互联网公司;3、拼多多,是社交新电商领导者,更懂消费者的购物平台;4、京喜,是京东旗下生活消费商城;5、蘑菇街,一个电子商务网站;6、聚美优品,是一家以销售化妆品为主的时尚购物网站;7、微店,是一个云推广电子商务平台;8、考拉海购,是一个跨境海淘业务为主的会员电商平台。

微信怎么查看ip地址微信怎么查看ip地址May 31, 2023 am 09:16 AM

微信查看ip地址的方法:1、登录电脑版微信,右键点击屏幕下方的任务栏,点击“任务管理器”;2、弹出任务管理器时,点击左下角的“详细信息”;3、任务管理器进入“性能”选项,点击“打开资源监视器”;4、选择“网络”,勾选微信进程“Wechat.exe”;5、点击下面的“TCP连接”即可监视微信网络IP相关情况,发送消息得到回复就会显示他人的IP地址。

微信可以绑别人的银行卡号么微信可以绑别人的银行卡号么Mar 14, 2023 pm 04:53 PM

可以。未经过实名认证的微信号,可以绑定他人的银行卡,但在绑定过程中需要提供银行卡的开户人姓名、开户行地址、开户时预留的联系方式及银行卡支付密码;已通过实名认证的微信号,无法绑定他人银行卡,只能添加使用自己身份证办理的银行卡。

一个身份证只能绑定一个微信吗一个身份证只能绑定一个微信吗Mar 02, 2023 pm 01:50 PM

不是,一个身份证能绑定5个微信。按照微信当前规定,一个身份证可以实名认证5个微信号;如果已经实名认证了5个微信账号,但是还想要继续实名,就要把已经实名认证的一些不用的微信号清除以后,才可以再实名认证新的微信号。

微信赞赏码和收款码的区别是什么微信赞赏码和收款码的区别是什么Oct 31, 2022 pm 03:18 PM

区别:1、赞赏码是用于别人给自己打赏的,收取小费等小金额的赞赏给予,而收款码是一般的收款行为,可以进行大额收费的二维码;2、收款码是随时会变的,如果不是商家收款码,每次打开都会变,但是赞赏码不同,赞赏码是不会变的;3、赞赏码只能进行小额的首款,而收款码将可以大额首款。

电脑微信打字为什么打一个少一个电脑微信打字为什么打一个少一个Mar 28, 2023 pm 03:43 PM

电脑微信打字打一个少一个是因为开启了改写状态,其解决办法:1、打开电脑微信;2、在微信聊天窗口输入对话文字内容;3、找到并按下键盘上的Insert键即可正常输入文字内容。

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 Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

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.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),