Home php教程 php手册 微信支付开发当前URL未注册的解决方案

微信支付开发当前URL未注册的解决方案

Jun 07, 2016 am 11:36 AM

微信支付开发当前URL未注册的解决方案
流程实现
1. OAuth2.0授权
JSAPI 支付前需要调用 登录授权接口获取到用户的 Openid 。所以需要做一次授权,这次授权是不弹出确认框的。
其实质就是在用户访问http://www.fangbei.org/wxpay/js_api_call.php时跳转到https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx8888888888888888&redirect_uri=http://www.fangbei.org/wxpay/js_api_call.php&response_type=code&scope=snsapi_base&state=STATE#wechat_redirect以此来获得code参数,并根据code来获得授权access_token及openid

其实现的详细流程可参考 微信公众平台开发(71)OAuth2.0网页授权

在微信支付的Demo中,其代码为


1 //使用jsapi接口<br>  2 $jsApi = new JsApi_pub();<br>  3 <br>  4 //=========步骤1:网页授权获取用户openid============<br>  5 //通过code获得openid<br>  6 if (!isset($_GET['code']))<br>  7 {<br>  8     //触发微信返回code码<br>  9     $url = $jsApi->createOauthUrlForCode(WxPayConf_pub::JS_API_CALL_URL);<br> 10     Header("Location: $url"); <br> 11 }else<br> 12 {<br> 13     //获取code码,以获取openid<br> 14     $code = $_GET['code'];<br> 15     $jsApi->setCode($code);<br> 16     $openid = $jsApi->getOpenId();<br> 17 }这一步的最终结果就是获得了当前用户的openidou9dHt0L8qFLI1foP-kj5x1mDWsM

2. 统一支付
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返回预支付订单号的接口,目前微信支付所有场景均使用这一接口
统一支付中以下参数从配置中获取,或由类自动生成,不需要用户填写$this->parameters["appid"] = WxPayConf_pub::APPID;//公众账号ID<br> $this->parameters["mch_id"] = WxPayConf_pub::MCHID;//商户号<br> $this->parameters["spbill_create_ip"] = $_SERVER['REMOTE_ADDR'];//终端ip        <br> $this->parameters["nonce_str"] = $this->createNoncestr();//随机字符串<br> $this->parameters["sign"] = $this->getSign($this->parameters);//签名在JSAPI支付中,另外填写以下参数//统一支付接口中,trade_type为JSAPI时,openid为必填参数!<br> $unifiedOrder->setParameter("openid","$openid");//商品描述<br> $unifiedOrder->setParameter("body","方倍工作室");//商品描述<br> //自定义订单号,此处仅作举例<br> $timeStamp = time();<br> $out_trade_no = WxPayConf_pub::APPID."$timeStamp";<br> $unifiedOrder->setParameter("out_trade_no","$out_trade_no");//商户订单号 <br> $unifiedOrder->setParameter("total_fee","1");//总金额<br> $unifiedOrder->setParameter("notify_url",WxPayConf_pub::NOTIFY_URL);//通知地址 <br> $unifiedOrder->setParameter("trade_type","JSAPI");//交易类型其他为选填参数//非必填参数,商户可根据实际情况选填<br> //$unifiedOrder->setParameter("sub_mch_id","XXXX");//子商户号  <br> //$unifiedOrder->setParameter("device_info","XXXX");//设备号 <br> //$unifiedOrder->setParameter("attach","XXXX");//附加数据 <br> //$unifiedOrder->setParameter("time_start","XXXX");//交易起始时间<br> //$unifiedOrder->setParameter("time_expire","XXXX");//交易结束时间 <br> //$unifiedOrder->setParameter("goods_tag","XXXX");//商品标记 <br> //$unifiedOrder->setParameter("openid","XXXX");//用户标识<br> //$unifiedOrder->setParameter("product_id","XXXX");//商品ID这些参数最终组成了这样的xml数据,<xml><br>   <openid></openid><br>   <br>   <out_trade_no></out_trade_no><br>   <total_fee>1</total_fee><br>   <notify_url></notify_url><br>   <trade_type></trade_type><br>   <appid></appid><br>   <mch_id>10012345</mch_id><br>   <spbill_create_ip></spbill_create_ip><br>   <nonce_str></nonce_str><br>   <sign></sign><br> </xml>将这些数据提交给统一支付接口https://api.mch.weixin.qq.com/pay/unifiedorder将获得返回 如下数据<xml><br>   <return_code></return_code>  <br>   <return_msg></return_msg>  <br>   <appid></appid>  <br>   <mch_id></mch_id>  <br>   <nonce_str></nonce_str>  <br>   <sign></sign>  <br>   <result_code></result_code>  <br>   <prepay_id></prepay_id>  <br>   <trade_type></trade_type> <br> </xml>其中包含了最重要的预支付ID参数,prepay_id,值为 wx201410272009395522657a690389285100

3、JS API支付
前面的准备工作做好了以后,JS API根据prepay_id生成jsapi支付参数
生成代码如下

//=========步骤3:使用jsapi调起支付============$jsApi->setPrepayId($prepay_id);<br> $jsApiParameters = $jsApi->getParameters();生成的json数据如下{<br>     "appId": "wx8888888888888888",<br>     "timeStamp": "1414411784",<br>     "nonceStr": "gbwr71b5no6q6ne18c8up1u7l7he2y75",<br>     "package": "prepay_id=wx201410272009395522657a690389285100",<br>     "signType": "MD5",<br>     "paySign": "9C6747193720F851EB876299D59F6C7D"<br> }在微信浏览器中调试起js接口,代码如下<br> <br>     <meta> <br>     <title>微信安全支付</title> <br>     <script><br /> //调用微信JS api 支付<br /> function jsApiCall()<br /> {<br /> WeixinJSBridge.invoke(<br /> &#039;getBrandWCPayRequest&#039;,<br /> <?php echo $jsApiParameters; ?>,<br /> function(res){<br /> WeixinJSBridge.log(res.err_msg);<br /> //alert(res.err_code+res.err_desc+res.err_msg);<br /> }<br /> );<br /> }<br /> <br /> function callpay()<br /> {<br /> if (typeof WeixinJSBridge == "undefined"){<br /> if( document.addEventListener ){<br /> document.addEventListener(&#039;WeixinJSBridgeReady&#039;, jsApiCall, false);<br /> }else if (document.attachEvent){<br /> document.attachEvent(&#039;WeixinJSBridgeReady&#039;, jsApiCall); <br /> document.attachEvent(&#039;onWeixinJSBridgeReady&#039;, jsApiCall);<br /> }<br /> }else{<br /> jsApiCall();<br /> }<br /> }<br /> </script><br> <br> <br>     <br>     <div> <br>         <button>贡献一下</button><br>     </div> <br> <br> 当用户点击“贡献一下”按钮时,将弹出微信支付插件,用户可以开始支付。



4、支付通知
支付成功后,通知接口中也将收到支付成功的xml通知<xml><br>   <appid></appid>  <br>   <bank_type></bank_type>  <br>   <fee_type></fee_type>  <br>   <is_subscribe></is_subscribe>  <br>   <mch_id></mch_id>  <br>   <nonce_str></nonce_str>  <br>   <openid></openid>  <br>   <out_trade_no></out_trade_no>  <br>   <result_code></result_code>  <br>   <return_code></return_code>  <br>   <sign></sign>  <br>   <sub_mch_id></sub_mch_id>  <br>   <time_end></time_end>  <br>   <total_fee>1</total_fee>  <br>   <trade_type></trade_type>  <br>   <transaction_id></transaction_id> <br> </xml>当然这是所有的支付流程,我们还需要去微信公众号后台去设置。支付授权目录
这里很重要我就是在这里折腾了很久。怎么设置呢,首先要看你支付的当前页面URL
比如是:http://www.fangbei.org/wxpay/js_api_call.php你就必须填写:http://www.fangbei.org/wxpay/假如是:http://www.fangbei.org/wxpay/order/id/56.html你就必须写:http://www.fangbei.org/wxpay/order/id/看出规律了吧,就是把最后一个反斜杠后面的内容去掉就OK了。如果还有什么问题可以留言问我。

AD:真正免费,域名+虚机+企业邮箱=0元

Statement of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Learn about introductory code examples for Python programming Learn about introductory code examples for Python programming Jan 04, 2024 am 10:50 AM

Learn about Python programming with introductory code examples Python is an easy-to-learn, yet powerful programming language. For beginners, it is very important to understand the introductory code examples of Python programming. This article will provide you with some concrete code examples to help you get started quickly. Print HelloWorldprint("HelloWorld") This is the simplest code example in Python. The print() function is used to output the specified content

PHP variables in action: 10 real-life examples of use PHP variables in action: 10 real-life examples of use Feb 19, 2024 pm 03:00 PM

PHP variables store values ​​during program runtime and are crucial for building dynamic and interactive WEB applications. This article takes an in-depth look at PHP variables and shows them in action with 10 real-life examples. 1. Store user input $username=$_POST["username"];$passWord=$_POST["password"]; This example extracts the username and password from the form submission and stores them in variables for further processing. 2. Set the configuration value $database_host="localhost";$database_username="username";$database_pa

From beginner to proficient: Code implementation of commonly used data structures in Go language From beginner to proficient: Code implementation of commonly used data structures in Go language Mar 04, 2024 pm 03:09 PM

Title: From Beginner to Mastery: Code Implementation of Commonly Used Data Structures in Go Language Data structures play a vital role in programming and are the basis of programming. In the Go language, there are many commonly used data structures, and mastering the implementation of these data structures is crucial to becoming a good programmer. This article will introduce the commonly used data structures in the Go language and give corresponding code examples to help readers from getting started to becoming proficient in these data structures. 1. Array Array is a basic data structure, a group of the same type

Go language programming examples: code examples in web development Go language programming examples: code examples in web development Mar 04, 2024 pm 04:54 PM

"Go Language Programming Examples: Code Examples in Web Development" With the rapid development of the Internet, Web development has become an indispensable part of various industries. As a programming language with powerful functions and superior performance, Go language is increasingly favored by developers in web development. This article will introduce how to use Go language for Web development through specific code examples, so that readers can better understand and use Go language to build their own Web applications. 1. Simple HTTP Server First, let’s start with a

Java implements simple bubble sort code Java implements simple bubble sort code Jan 30, 2024 am 09:34 AM

The simplest code example of Java bubble sort Bubble sort is a common sorting algorithm. Its basic idea is to gradually adjust the sequence to be sorted into an ordered sequence through the comparison and exchange of adjacent elements. Here is a simple Java code example that demonstrates how to implement bubble sort: publicclassBubbleSort{publicstaticvoidbubbleSort(int[]arr){int

How to use PHP to write inventory management function code in the inventory management system How to use PHP to write inventory management function code in the inventory management system Aug 06, 2023 pm 04:49 PM

How to use PHP to write the inventory management function code in the inventory management system. Inventory management is an indispensable part of many enterprises. For companies with multiple warehouses, the inventory management function is particularly important. By properly managing and tracking inventory, companies can allocate inventory between different warehouses, optimize operating costs, and improve collaboration efficiency. This article will introduce how to use PHP to write code for inventory warehouse management functions, and provide you with relevant code examples. 1. Establish the database before starting to write the code for the inventory warehouse management function.

Guidance and Examples: Learn to implement the selection sort algorithm in Java Guidance and Examples: Learn to implement the selection sort algorithm in Java Feb 18, 2024 am 10:52 AM

Java Selection Sorting Method Code Writing Guide and Examples Selection sorting is a simple and intuitive sorting algorithm. The idea is to select the smallest (or largest) element from the unsorted elements each time and exchange it until all elements are sorted. This article will provide a code writing guide for selection sorting, and attach specific Java sample code. Algorithm Principle The basic principle of selection sort is to divide the array to be sorted into two parts, sorted and unsorted. Each time, the smallest (or largest) element is selected from the unsorted part and placed at the end of the sorted part. Repeat the above

Huawei Cloud Edge Computing Interconnection Guide: Java code examples to quickly implement interfaces Huawei Cloud Edge Computing Interconnection Guide: Java code examples to quickly implement interfaces Jul 05, 2023 pm 09:57 PM

Huawei Cloud Edge Computing Interconnection Guide: Java Code Samples to Quickly Implement Interfaces With the rapid development of IoT technology and the rise of edge computing, more and more enterprises are beginning to pay attention to the application of edge computing. Huawei Cloud provides edge computing services, providing enterprises with highly reliable computing resources and a convenient development environment, making edge computing applications easier to implement. This article will introduce how to quickly implement the Huawei Cloud edge computing interface through Java code. First, we need to prepare the development environment. Make sure you have the Java Development Kit installed (

See all articles