web-dev-qa-db-ja.com

Guzzle 6を使用してAPIエンドポイントにファイルをアップロードする

Postmanを使用してAPIエンドポイントにファイルをアップロードできます。

これをフォームからファイルをアップロードし、Laravelを使用してアップロードし、Guzzle 6を使用してエンドポイントに投稿することに変換しようとしています。

Postmanでの表示のスクリーンショット(POST URL)を意図的に省略しました enter image description here

以下は、POSTMANの[コードの生成]リンクをクリックしたときに生成されるテキストです。

POST /api/file-submissions HTTP/1.1
Host: strippedhostname.com
Authorization: Basic 340r9iu34ontoeioir
Cache-Control: no-cache
Postman-Token: 6e0c3123-c07c-ce54-8ba1-0a1a402b53f1
Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW

----WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="FileContents"; filename=""
Content-Type: 


----WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="FileInfo"

{ "name": "_aaaa.txt", "clientNumber": "102425", "type": "Writeoff" }
----WebKitFormBoundary7MA4YWxkTrZu0gW

以下は、ファイルやその他の情報を保存するためのコントローラー機能です。ファイルが正しくアップロードされ、ファイル情報を取得できます。

私が抱えている問題は、正しいデータでmultipartおよびheaders配列を設定することだと思います。

public function fileUploadPost(Request $request)
{
    $data_posted = $request->input();
    $endpoint = "/file-submissions";
    $response = array();
    $file = $request->file('filename');
    $name = time() . '_' . $file->getClientOriginalName();
    $path = base_path() .'/public_html/documents/';

    $resource = fopen($file,"r") or die("File upload Problems");

    $file->move($path, $name);

    // { "name": "test_upload.txt", "clientNumber": "102425", "type": "Writeoff" }
    $fileinfo = array(
        'name'          =>  $name,
        'clientNumber'  =>  "102425",
        'type'          =>  'Writeoff',
    );

    $client = new \GuzzleHttp\Client();

    $res = $client->request('POST', $this->base_api . $endpoint, [
        'auth' => [env('API_USERNAME'), env('API_PASSWORD')],
        'multipart' => [
            [
                'name'  =>  $name,
                'FileContents'  => fopen($path . $name, 'r'),
                'contents'      => fopen($path . $name, 'r'),
                'FileInfo'      => json_encode($fileinfo),
                'headers'       =>  [
                    'Content-Type' => 'text/plain',
                    'Content-Disposition'   => 'form-data; name="FileContents"; filename="'. $name .'"',
                ],
                // 'contents' => $resource,
            ]
        ],
    ]);

    if($res->getStatusCode() != 200) exit("Something happened, could not retrieve data");

    $response = json_decode($res->getBody());

    var_dump($response);
    exit();
}

私が受け取っているエラー、Laravelのデバッグビューを使用して表示するスクリーンショット:

enter image description here

22
Brad

データのPOST方法が間違っているため、受信したデータの形式が正しくありません。

Guzzle docs

multipartの値は連想配列の配列で、各配列には次のキーと値のペアが含まれます。

name:(文字列、必須)フォームフィールド名

contents :( StreamInterface/resource/string、必須)フォーム要素で使用するデータ。

headers:(配列)フォーム要素で使用するカスタムヘッダーのオプションの連想配列。

filename:(文字列)パートのファイル名として送信するオプションの文字列。

上記のリストにないキーを使用し、各フィールドを1つの配列に分割せずに不要なヘッダーを設定すると、不正なリクエストが行われます。

$res = $client->request('POST', $this->base_api . $endpoint, [
    'auth'      => [ env('API_USERNAME'), env('API_PASSWORD') ],
    'multipart' => [
        [
            'name'     => 'FileContents',
            'contents' => file_get_contents($path . $name),
            'filename' => $name
        ],
        [
            'name'     => 'FileInfo',
            'contents' => json_encode($fileinfo)
        ]
    ],
]);
43
revo
$body = fopen('/path/to/file', 'r');
$r = $client->request('POST', 'http://httpbin.org/post', ['body' => $body]);

http://docs.guzzlephp.org/en/latest/quickstart.html?highlight=file

0
Pawel