'require|url', 'state|携带参数' => 'require|length:1,255', 'scope|应用授权作用域' => 'require|in:snsapi_base,snsapi_userinfo' ]); if (!$val->check(['callback' => $callback, 'state' => $state, 'scope' => $scope])) throw new ValidateException($val->getError()); $oauth = &load_wechat('Oauth'); $rs = $oauth->getOauthRedirect($callback, $state, $scope); halt('调用成功', $rs); } //通过code换取网页授权access_token(和openId) public static function getOauthAccessToken() { $oauth = &load_wechat('Oauth'); $rs = $oauth->getOauthAccessToken(); halt('最终结果:', $rs); } //获取预支付信息 public static function getPrepayId(string $openid = '', string $body = '', string $out_trade_no = '', float $total_fee = 0, string $notify_url = '', string $trade_type = "JSAPI") { if($notify_url == '') $notify_url=env('notify_url'); $pay = &load_wechat('Pay'); $rs = $pay->getPrepayId($openid, $body, $out_trade_no, bcmul($total_fee, '100'), $notify_url, $trade_type); halt('预支付结果:', $rs); } }