hongcaideng / wxpay
微信支付 微信js支付 Weixin weixinPay
dev-master
2015-09-06 09:07 UTC
Requires
- php: >=5.5.9
- illuminate/support: 5.1.*
This package is not auto-updated.
Last update: 2024-12-21 19:16:39 UTC
README
WeiXin Payment
###微信支付的配置要点:请留心注意本部分内容,因为这很可能是你遇到的大坑。 1.网页授权(设置错误会出现redirect_url参数错误的错误) 这个网页授权需要登录微信公众平台,点击左侧菜单“开发者中心”,在右侧“权限列表”中找到“网页账号”,点击最右侧的修改,把测试的网址写进去,不要加http。
2.支付授权目录(设置不对会无法发起js支付,因为没有权限,错误为:“getBrandWCPayRequest:fail_no permission to execute” ) 设置好授权目录即可。
###Install
- 修改composer.json文件,加入
"hongcaideng/wxpay": "dev-master"
"require": { "hongcaideng/wxpay": "dev-master" }
- 修改app/config/app.php
'providers' => array( HongcaiDeng\Wxpay\WxpayServiceProvider::class ) 'aliases' => array( 'Wxpay' => HongcaiDeng\Wxpay\Facades\Wxpay::class, )
- 运行
composer update
命令 - 如有必要修改支付页面,运行
php artisan vendor publish
###Usage
支付调用示例
$config = array( 'body'=>'', 'total_fee' =>'', 'out_trade_no' => $order->id, 'js_api_call_url' => action('OrderController@pay', ['id' => $order->id]), ... ); list($prepay_id, $view) = Wxpay::instance('jsApi')->setConfig($config)->pay();
支付回调
$wxpay = Wxpay::instance('jsApi'); list($notify, $data) = $wxpay->verifyNotify(); //验证回调 if($notify){ //业务逻辑 $wxpay->setReturnParameter("return_code","SUCCESS");//设置返回码 $wxpay->returnXml(); }else{ //业务逻辑 $wxpay->setReturnParameter("return_code","FAIL");//返回状态码 $wxpay->setReturnParameter("return_msg","签名失败");//返回信息 $wxpay->returnXml(); }