/** * * 转换短链接 * 该接口主要用于扫码原生支付模式一中的二维码链接转成短链接(weixin://wxpay/s/XXXXXX), * 减小二维码数据量,提升扫描速度和精确度。 * @param WxPayShortUrl $inputObj * @param int $timeOut * @throws WxPayException * @return 成功时返回,其他抛异常 */ public static function shorturl($inputObj, $timeOut = 6) { $payments = session('paymentinfo'); self::$appid = $payments['wxappid']; self::$mchid = $payments['wxmchid']; $url = "https://api.mch.weixin.qq.com/tools/shorturl"; //检测必填参数 if (!$inputObj->IsLong_urlSet()) { throw new WxPayException("需要转换的URL,签名用原串,传输需URL encode!"); } $inputObj->SetAppid(self::$appid); //公众账号ID $inputObj->SetMch_id(self::$mchid); //商户号 $inputObj->SetNonce_str(self::getNonceStr()); //随机字符串 $inputObj->SetSign(); //签名 $xml = $inputObj->ToXml(); $startTimeStamp = self::getMillisecond(); //请求开始时间 $response = self::postXmlCurl($xml, $url, false, $timeOut); $result = WxPayResults::Init($response); self::reportCostTime($url, $startTimeStamp, $result); //上报请求花费时间 return $result; }