From d26e65e55943f2bcbd7dc6b7c8484ef8a4f8a1f4 Mon Sep 17 00:00:00 2001 From: elf <360197197@qq.com> Date: Sun, 8 Jan 2023 20:17:55 +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 a61c7df..f9ebc35 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' => $this->content, + 'content' => json_encode($this->content), ]; $params[Sign::SIGN_KEY] = Sign::generate($params, $this->secretKey); return $params;