We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 82fa8c6 + dd65337 commit 779a801Copy full SHA for 779a801
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