Skip to content

7.0.0

Latest
Compare
Choose a tag to compare
@abraham abraham released this 11 Feb 18:59
· 4 commits to main since this release
a862268

Change the third argument of callers from a boolean to an array

+ $connection->post("tweets", ["text" => $text], ['jsonPayload' => true]);
- $connection->post("tweets", ["text" => $text], true);
$connection->upload( 
  'media/upload',
  ['media' => $file_path, 'media_type' => 'video/mp4'],
+   ['chunkedUpload' => true],
-   true
);