Guzzle: Passing in the "body" request option as an array to send a POST request has been deprecated.
notfalsedev opened this issue · 0 comments
notfalsedev commented
Vanaf Guzzle 6.0.1 is het gebruik van de "body" param bij het versturen van een Guzzle request deprecated en geeft een foutmelding.
Error:
Passing in the "body" request option as an array to send a POST request has been deprecated. Please use the "form_params" request option to send a application/x-www-form-urlencoded request, or the "multipart" request option to send a multipart/form-data request.
Oplossing:
Composer.json: Update Guzzle naar een hogere versie ^6.0.1.
Trunkrs\SDK\HTTP\GuzzleClient: Regel 37
Vervang:
$options['body'] = $params;
Met:
$options['form_params'] = $params;