From f73ed7ac552bcad7a50fa5f367f21800bffb2223 Mon Sep 17 00:00:00 2001 From: elf <360197197@qq.com> Date: Sun, 8 Jan 2023 20:29:47 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ThinkPHP/Library/Org/Kudian/Request/Request.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ThinkPHP/Library/Org/Kudian/Request/Request.class.php b/ThinkPHP/Library/Org/Kudian/Request/Request.class.php index f9ebc35..9862b95 100644 --- a/ThinkPHP/Library/Org/Kudian/Request/Request.class.php +++ b/ThinkPHP/Library/Org/Kudian/Request/Request.class.php @@ -52,7 +52,7 @@ class Request 'timestamp' => $this->timestamp, 'nonce_str' => $this->nonceStr, 'sign_type' => $this->signType, - 'content' => json_encode($this->content), + 'content' => json_encode($this->content, JSON_UNESCAPED_UNICODE), ]; $params[Sign::SIGN_KEY] = Sign::generate($params, $this->secretKey); return $params;