feat: 设置 SendCode 类的请求超时时间,优化 API 调用稳定性

This commit is contained in:
lingling 2025-03-09 12:37:13 +08:00
parent 6e27737531
commit de52536a37
1 changed files with 6 additions and 4 deletions

View File

@ -24,6 +24,8 @@ class SendCode
{
if (self::$client == null) {
self::$client = new Client([
'timeout' => 60, // 设置请求超时时间为60秒
'connect_timeout' => 30, // 设置连接超时时间为30秒
'curl' => [
CURLOPT_FRESH_CONNECT => false,
CURLOPT_FORBID_REUSE => false,
@ -138,7 +140,7 @@ class SendCode
$body = $response->getBody();
$responseData = json_decode($body, true); // 如果返回的是 JSON 格式,解析它
if ($responseData['code'] != 0) {
Log::warning("ws:".$phone."删除失败 Code:".$responseData['code']);
Log::warning("ws:" . $phone . "删除失败 Code:" . $responseData['code'].' msg:'.$responseData['msg']);
}
}
}