lookupFamiliarFollowers abstract method

Future<MastodonResponse<List<FamiliarFollower>>> lookupFamiliarFollowers({
  1. required List<String> accountIds,
})

Obtain a list of all accounts that follow a given account, filtered for accounts you follow.

Parameters

  • accountIds: Find familiar followers for the provided account IDs.

Endpoint Url

  • GET /api/v1/accounts/familiar_followers HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • read:follows

Reference

Implementation

Future<MastodonResponse<List<FamiliarFollower>>> lookupFamiliarFollowers({
  required List<String> accountIds,
});