Skip to content

Releases: abraham/twitteroauth

7.0.0

11 Feb 18:59
a862268
Compare
Choose a tag to compare

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
);

6.2.0

28 Oct 20:21
e6fc2e0
Compare
Choose a tag to compare
  • Expand PHP 8 support

6.1.0

08 Aug 03:21
20efddf
Compare
Choose a tag to compare

Default v2 to JSON payload

6.0.0

24 Jul 13:43
233bd80
Compare
Choose a tag to compare

Default to Twitter API v2.

For v1 APIs you can switch back using:

$connection->setApiVersion('1.1');

5.0.0

17 Jan 01:16
6a68a5e
Compare
Choose a tag to compare

Require PHP 8

v4.0.1

18 Aug 23:32
b930259
Compare
Choose a tag to compare
  • Resolve parameters to random_int

v4.0.0

02 Apr 16:50
55dcddb
Compare
Choose a tag to compare
  • Modernize PHP with Rector

3.3.0

19 Jan 01:11
2e640c1
Compare
Choose a tag to compare
  • Support JSON in PUT

3.2.0

25 Nov 22:27
71a716d
Compare
Choose a tag to compare
  • Add support for php 8.1
  • Remove support for php 7.3

3.1.0

19 Jul 00:44
51a502c
Compare
Choose a tag to compare
  • Switch apiUrl to protected. Overriding apiUrl is not officially supported.