We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8597a8 commit dd65337Copy full SHA for dd65337
src/Clients/UserClient.php
@@ -38,7 +38,7 @@ public function getLikedTweets(string $id): Tweets
38
public function getFollowers(string $id): Users
39
{
40
$response = $this->get('users/' . $id . '/followers', [
41
- 'user.fields' => 'created_at',
+ 'user.fields' => $this->userFields,
42
]);
43
44
return new Users($response->getData());
@@ -47,7 +47,7 @@ public function getFollowers(string $id): Users
47
public function getFollowing(string $id): Users
48
49
$response = $this->get('users/' . $id . '/following', [
50
51
52
53
0 commit comments