首页 > 解决方案 > HttpClient 需要更长的时间来返回数组响应

问题描述

我正在使用HttpClient此请求调用外部 API 大约需要 30 秒来响应数组。有什么方法可以减少这个响应时间吗?

    $response = $this->httpClient->request('GET', $url, [
        'x-auth-token' => $this->session->get('token'),
        'x-auth-key'   => $token
    ]);

    return $response->toArray();

标签: phphttpclientsymfony4

解决方案


推荐阅读