赞
踩
微信支付成功了,但是发现微信支付成功后竟然没有执行回调方法,现在自己尝试了以下几种方法反复下单测试都没有执行到回调方法,所以想求助大神给点方法,谢谢了。
注意:那些要回复我:“官方api说得很清楚和有demo下载。” 看的同学请不要回复我这个问题,谢谢。
首先我确保notify_url的路径【jsapi.php文件】官方的demo文件改过来的。
我的回调路径:
$result = $input->SetNotify_url("--路径保密--/Wxpay/example/notify.php");
我尝试着访问这个路径是否可以通,然后通过官方的logs/里面的日志是有请求访问信息记录的:
2017-10-02 17:33:36 begin notify
2017-10-02 17:33:36 end notify
2017-10-02 17:33:36 return notify
2017-10-02 17:33:37 begin notify
2017-10-02 17:33:37 end notify
2017-10-02 17:33:37 return notify
然后我自己下单尝试这个路径是否正常,发现不执行,竟然连个日志信息都没有。。
我的notify.php文件是微信官方demo下载下来的,然后只是增加了自己的修改订单状态的语法而已,其他的都和官方一样。
求大神给点方案,到底这个回调什么情况下才能执行,而且官方的notify.php的demo方法是不是有问题?谢谢了。
notify.php代码:
ini_set('date.timezone','Asia/Shanghai');
error_reporting(E_ERROR);
require_once "../lib/WxPay.Api.php";
require_once '../lib/WxPay.Notify.php';
require_once 'log.php';
//初始化日志
$logHandler= new CLogFileHandler("../logs/".date('Y-m-d').'.log');
$log = Log::Init($logHandler, 15);
class PayNotifyCallBack extends WxPayNotify
{
//查询订单
public function Queryorder($transaction_id)
{
$input = new WxPayOrderQuery();
$input->SetTransaction_id($transaction_id);
$result = WxPayApi::orderQuery($input);
Log::DEBUG("query:" . json_encode($result));
if(array_key_exists("return_code", $result)
&& array_key_exists("result_code", $result)
&& $result["return_code"] == "SUCCESS"
&& $result["result_code"] == "SUCCESS")
{
return true;
}
return false;
}
//重写回调处理函数
public function NotifyProcess($data, &$msg)
{
Log::DEBUG("call back:" . json_encode($data));
$notfiyOutput = array();
if(!array_key_exists("transaction_id", $data)){
$msg = "输入参数不正确";
return false;
}
//查询订单,判断订单真实性
if(!$this->Queryorder($data["transaction_id"])){
$msg = "订单查询失败";
return false;
}
//订单成功的地方
//根据out_trade_no修改订单状态
---- 在这里修改订单状态的----
return true;
}
//我加的一个curl执行方法
public function curlSend($url,$data=''){
$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //不进行证书验证
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); //不进行主机头验证
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); //结果不直接输出在屏幕上
$data && curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$data ? curl_setopt($ch, CURLOPT_POST, true):curl_setopt($ch, CURLOPT_POST, false); //发送的方式
curl_setopt($ch, CURLOPT_URL, $url); //发送的地址
$result =curl_exec($ch);
curl_close($ch);
$info =json_decode($result,true);
return $info ;
}
}
Log::DEBUG("begin notify");
$notify = new PayNotifyCallBack();
$notify->Handle(false);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。