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;