GuzzleHttp \ Client无法正常工作的数据> 1 MB

时间:2019-09-02 14:57:14

标签: php guzzle

无法将数据> 1mb作为json发布到guzzle http中。它适用于<1MB的鳍 我正在用食尸鬼6

这是我的代码

 $client = new \GuzzleHttp\Client([
         // Base URI is used with relative requests
        'base_uri' => env('BASE_URL'),
        // You can set any number of default request options.
        'timeout'  => 100.0,
        'headers' => getallheaders(),
        'defaults' => [
            'config' => [
                'curl' => [
                    'body_as_string' => true,
                ],
            ],
        ],
    ]);

    $response = $client->post($request->path(), [
        'json' => $request->all(),
        'config' => [
            'curl' => [
                'body_as_string' => true,
            ],
        ],
    ]);

在$ request-> all()中,我正在接收所有输入,并试图将其传递给另一台服务器。但是,当数据量很大时,内容将在服务器2中部分接收。

0 个答案:

没有答案