2017-06-22 144 views
0

我是新來的Guzzle,我試圖做一個REST請求來簽署PDF文件。該供應商說:guzzle,如何強制multipart/form-data中的內容類型

  • 您需要使用基本身份驗證
  • 請求必須是POST請求
  • 的MIME類型應該是多部分/格式數據
  • 發送必須是文件的應用程序/ octet-流和它的名字應該是「文件」
  • 發送的數據必須是application/JSON和它的名字應該是「數據」

系統返回AR其中包含簽名的PDF文件和類型是應用程序/八位字節流

這是我用Guzzle測試的代碼,但提供者說應用程序/ pdf中發送了類型MIME。我怎樣才能「強制」PDF文件的MIME類型?

$client = new Client([ 
    'auth' => ['login', 'password'], 
    'debug' => true, 
    'curl' => [ 
        CURLOPT_PROXY => '192.168.1.232', 
        CURLOPT_PROXYPORT => '8080', 
        CURLOPT_PROXYUSERPWD => 'username:password', 
      ], 
]); 
$boundary = 'my_custom_boundary'; 
$multipart = [ 
      [ 
       'name'  => 'data', 
       'contents' => "{'nomDocument':'documentTest.pdf','externalid':'123456'}", 
       'Content-Type' => 'application/json' 
      ], 
      [ 
       'name'  => 'file', 
       'contents' => fopen('documentTest.pdf', 'r'), 
       'Content-Type' => 'application/octet-stream' 
      ], 
     ]; 

$params = [ 
    'headers' => [ 
     'Connection' => 'close', 
     'Content-Type' => 'multipart/form-data; boundary='.$boundary, 
    ], 
    'body' => new GuzzleHttp\Psr7\MultipartStream($multipart, $boundary), 
]; 

try{ 
    $response = $client->request('POST', 'https://server.com/api/sendDocument', $params); 
} catch (RequestException $e) { 
    echo Psr7\str($e->getRequest()); 
    if ($e->hasResponse()) { 
     echo Psr7\str($e->getResponse()); 
    } 
} 

謝謝你的幫忙。

回答

0

您必須通過在Content-Type頭

$multipart = [ 
     [ 
      'name'  => 'data', 
      'contents' => "{'nomDocument':'documentTest.pdf','externalid':'123456'}", 
      'headers' => [ 'Content-Type' => 'application/json'] 
     ], 
     [ 
      'name'  => 'file', 
      'contents' => fopen('documentTest.pdf', 'r'), 
      'headers' => [ 'Content-Type' => 'application/octet-stream'] 
     ], 
    ]; 
Guzzle Documentation

說,你可以爲每個多數據指定頭。 如果你沒有設置標題Guzzle根據文件爲你添加一個Content-Type。

相關問題