Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
7.0.0 source code.tar.gz | 2024-02-11 | 24.4 kB | |
7.0.0 source code.zip | 2024-02-11 | 29.6 kB | |
README.md | 2024-02-11 | 402 Bytes | |
Totals: 3 Items | 54.4 kB | 0 |
Change the third argument of callers from a boolean to an array
:::diff
+ $connection->post("tweets", ["text" => $text], ['jsonPayload' => true]);
- $connection->post("tweets", ["text" => $text], true);
:::diff
$connection->upload(
'media/upload',
['media' => $file_path, 'media_type' => 'video/mp4'],
+ ['chunkedUpload' => true],
- true
);