/**
* Get list of who a user is followed by.
*
* @param string $userId Numerical UserPK ID.
* @param string $rankToken The list UUID. You must use the same value for all pages of the list.
* @param string|null $searchQuery Limit the userlist to ones matching the query.
* @param string|null $maxId Next "maximum ID", used for pagination.
*
* @throws \InvalidArgumentException
* @throws \InstagramAPI\Exception\InstagramException
*
* @return \InstagramAPI\Response\FollowerAndFollowingResponse
*
* @see Signatures::generateUUID() To create a UUID.
* @see examples/rankTokenUsage.php For an example.
*/
public function getFollowers(
$userId,
$rankToken,
$searchQuery = null,
$maxId = null)
{
Utils::throwIfInvalidRankToken($rankToken);
$request = $this->ig->request("friendships/{$userId}/followers/")
->addParam('rank_token', $rankToken);
if ($searchQuery !== null) {
$request->addParam('query', $searchQuery);
}
if ($maxId !== null) {
$request->addParam('max_id', $maxId);
}

return $request->getResponse(new Response\FollowerAndFollowingResponse());
}



api nin dökümantasyonunda bu şekilde seçene var " $maxId = null " olan kısmı $maxId = 1000 yaptım mesela bu bir işe yaramadı.