欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

微信支付JsApi 40163错误

程序员文章站 2022-04-28 10:38:46
微信支付JsApi 40163错误错误:未定义数组索引:openid 。经过检查发现是 :微信支付授权获取 openId {“errcode”:40163,“errmsg”:“code been used”,}原因为:微信支付code 只能使用一次,当第二次重复使用时就会出现此错误。解决相关参考:h ......
微信支付jsapi 40163错误
错误:
未定义数组索引:openid 。
经过检查发现是 :微信支付授权获取 openid {“errcode”:40163,“errmsg”:“code been used”,}
原因为:微信支付code 只能使用一次,当第二次重复使用时就会出现此错误。
解决相关参考:https://www.e-learn.cn/content/php/1102683
参考中的方法本人尝试无果,故自己根据原因重写:
经排查发现问题出在:
wxpay.jsapipay.php中的getopenid方法,源码为:
/**
 *
 * 通过跳转获取用户的openid,跳转流程如下:
 * 1、设置自己需要调回的url及其其他参数,跳转到微信服务器https://open.weixin.qq.com/connect/oauth2/authorize
 * 2、微信服务处理完成之后会跳转回用户redirect_uri地址,此时会带上一些参数,如:code
 *
 * @return 用户的openid
 */
public function getopenid()
{
   //通过code获得openid
   if (!isset($_get['code']) ){
      //触发微信返回code码
      $baseurl = urlencode('http://'.$_server['http_host'].$_server['request_uri']);
      $url = $this->__createoauthurlforcode($baseurl);
      header("location: $url");
      exit();
   } else {
      //获取code码,以获取openid
       $code = $_get['code'];
       $openid = $this->getopenidfrommp($code);
   
       return $openid;
   }
}
改后代码为:
/**
 *
 * 通过跳转获取用户的openid,跳转流程如下:
 * 1、设置自己需要调回的url及其其他参数,跳转到微信服务器https://open.weixin.qq.com/connect/oauth2/authorize
 * 2、微信服务处理完成之后会跳转回用户redirect_uri地址,此时会带上一些参数,如:code
 *
 * @return 用户的openid
 */
public function getopenid()
{
   //通过code获得openid
   if (!isset($_get['code']) ){
      //触发微信返回code码
      $baseurl = urlencode('http://'.$_server['http_host'].$_server['request_uri']);
      $url = $this->__createoauthurlforcode($baseurl);
      header("location: $url");
      exit();
   } else {
      //获取code码,以获取openid
       $code = $_get['code'];
           if(session("?$code")){
               $openid = $this->getopenidfrommp($code);
           }else{
               $openid= session($code);
           }
           session($code, $openid);// ######  2019.03.01  加  为解决code been used
      return $openid;
   }
}
逻辑为将获取到的openid以code为名存入session;当再次请求时,查询该次请求中以code为名的session是否存在,以此防止二次使用code。