feat: 设置 SendCode 类的请求超时时间,优化 API 调用稳定性
This commit is contained in:
parent
6e27737531
commit
de52536a37
|
@ -24,6 +24,8 @@ class SendCode
|
||||||
{
|
{
|
||||||
if (self::$client == null) {
|
if (self::$client == null) {
|
||||||
self::$client = new Client([
|
self::$client = new Client([
|
||||||
|
'timeout' => 60, // 设置请求超时时间为60秒
|
||||||
|
'connect_timeout' => 30, // 设置连接超时时间为30秒
|
||||||
'curl' => [
|
'curl' => [
|
||||||
CURLOPT_FRESH_CONNECT => false,
|
CURLOPT_FRESH_CONNECT => false,
|
||||||
CURLOPT_FORBID_REUSE => false,
|
CURLOPT_FORBID_REUSE => false,
|
||||||
|
@ -138,7 +140,7 @@ class SendCode
|
||||||
$body = $response->getBody();
|
$body = $response->getBody();
|
||||||
$responseData = json_decode($body, true); // 如果返回的是 JSON 格式,解析它
|
$responseData = json_decode($body, true); // 如果返回的是 JSON 格式,解析它
|
||||||
if ($responseData['code'] != 0) {
|
if ($responseData['code'] != 0) {
|
||||||
Log::warning("ws:".$phone."删除失败 Code:".$responseData['code']);
|
Log::warning("ws:" . $phone . "删除失败 Code:" . $responseData['code'].' msg:'.$responseData['msg']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue