web-dev-qa-db-ja.com

PHP GuzzleHttp。 paramsを使用して投稿要求を行う方法

GuzzleHttp(バージョン5.0)で投稿リクエストを作成する方法。

私は次のことをしようとしています:

$client = new \GuzzleHttp\Client();
$client->post(
    'http://www.example.com/user/create',
    array(
        'email' => '[email protected]',
        'name' => 'Test user',
        'password' => 'testpassword'
    )
);

しかし、私はエラーが発生しています:

PHPの致命的エラー:「メール設定キーを処理できるメソッドはありません」というメッセージを含むキャッチされない例外「InvalidArgumentException」

74
Arsen

編集:このメソッドは6.0で非推奨になりました。 「body」の代わりに「form_params」を使用します

これを試して

$client = new \GuzzleHttp\Client();
$client->post(
    'http://www.example.com/user/create',
    array(
        'body' => array(
            'email' => '[email protected]',
            'name' => 'Test user',
            'password' => 'testpassword'
        )
    )
);
61
Marco

Marcoの回答は非推奨なので、次の構文を使用する必要があります(jasonlfunkのコメントによる):

$client = new \GuzzleHttp\Client();
$response = $client->request('POST', 'http://www.example.com/user/create', [
    'form_params' => [
        'email' => '[email protected]',
        'name' => 'Test user',
        'password' => 'testpassword',
    ]
]);

POSTファイルを使用したリクエスト

$response = $client->request('POST', 'http://www.example.com/files/post', [
    'multipart' => [
        [
            'name'     => 'file_name',
            'contents' => fopen('/path/to/file', 'r')
        ],
        [
            'name'     => 'csv_header',
            'contents' => 'First Name, Last Name, Username',
            'filename' => 'csv_header.csv'
        ]
    ]
]);

Paramsを使用したREST動詞の使用

// PUT
$client->put('http://www.example.com/user/4', [
    'body' => [
        'email' => '[email protected]',
        'name' => 'Test user',
        'password' => 'testpassword',
    ],
    'timeout' => 5
]);

// DELETE
$client->delete('http://www.example.com/user');

非同期POSTデータ

長時間のサーバー操作に役立ちます。

$client = new \GuzzleHttp\Client();
$promise = $client->requestAsync('POST', 'http://www.example.com/user/create', [
    'form_params' => [
        'email' => '[email protected]',
        'name' => 'Test user',
        'password' => 'testpassword',
    ]
]);
$promise->then(
    function (ResponseInterface $res) {
        echo $res->getStatusCode() . "\n";
    },
    function (RequestException $e) {
        echo $e->getMessage() . "\n";
        echo $e->getRequest()->getMethod();
    }
);

デバッグの詳細情報

より詳細な情報が必要な場合は、次のようにdebugオプションを使用できます。

$client = new \GuzzleHttp\Client();
$response = $client->request('POST', 'http://www.example.com/user/create', [
    'form_params' => [
        'email' => '[email protected]',
        'name' => 'Test user',
        'password' => 'testpassword',
    ],
    // If you want more informations during request
    'debug' => true
]);

ドキュメント は、新しい可能性についてのより明確な説明です。

155
jedema

Guzzle V6.0 +では、次のエラーが発生する別の原因として、配列としてのJSONの誤った使用が考えられます。

POSTリクエストを送信するための配列として "body"リクエストオプションを渡すことは非推奨になりました。 application/x-www-form-urlencodedリクエストを送信するには「form_params」リクエストオプションを使用し、multipart/form-dataリクエストを送信するには「multipart」リクエストオプションを使用してください。

不正解

$response = $client->post('http://example.com/api', [
    'body' => [
        'name' => 'Example name',
    ]
])

正しい

$response = $client->post('http://example.com/api', [
    'json' => [
        'name' => 'Example name',
    ]
])

正しい

$response = $client->post('http://example.com/api', [
    'headers' => ['Content-Type' => 'application/json'],
    'body' => json_encode([
        'name' => 'Example name',
    ])
])
26
Scott Yang
$client = new \GuzzleHttp\Client();
$request = $client->post('http://demo.website.com/api', [
    'body' => json_encode($dataArray)
]);
$response = $request->getBody();

追加する

openssl.cafileファイルのphp.ini

1
Prakash D