Remove missed curl_close
Unclaimed project
Are you a maintainer of twitteroauth? Claim this project to take control of your public changelog and roadmap.
Changelog
The most popular PHP library for use with the Twitter OAuth REST API.
Remove missed curl_close
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
);