mirror of
https://github.com/friendica/friendica
synced 2025-04-28 03:10:11 +00:00
Fix Guzzle InvalidArgumentException for POST with array parameters
This commit is contained in:
parent
75360f3b8c
commit
82c631eae3
3 changed files with 16 additions and 3 deletions
|
@ -92,7 +92,7 @@ interface ICanSendHttpRequests
|
|||
* Send POST request to an URL
|
||||
*
|
||||
* @param string $url URL to post
|
||||
* @param mixed $params array of POST variables
|
||||
* @param mixed $params POST variables (if an array is passed, it will automatically set as formular parameters)
|
||||
* @param array $headers HTTP headers
|
||||
* @param int $timeout The timeout in seconds, default system config value or 60 seconds
|
||||
*
|
||||
|
@ -107,6 +107,7 @@ interface ICanSendHttpRequests
|
|||
* @param string $url Url to send to
|
||||
* @param array $opts (optional parameters) associative array with:
|
||||
* 'body' => (mixed) setting the body for sending data
|
||||
* 'form_params' => (array) Associative array of form field names to values
|
||||
* 'accept_content' => (string array) supply Accept: header with 'accept_content' as the value
|
||||
* 'timeout' => int Timeout in seconds, default system config value or 60 seconds
|
||||
* 'cookiejar' => path to cookie jar file
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue