lookupFollowings abstract method

Future<MastodonResponse<List<Account>>> lookupFollowings({
  1. required String accountId,
  2. int? limit,
})

Accounts which follow the given account, if network is not hidden by the account owner.

Parameters

  • accountId: The ID of the Account in the database.

  • limit: Maximum number of results to return. Defaults to 40.

Endpoint Url

  • GET /api/v1/accounts/:id/following HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • read:accounts

Reference

Implementation

Future<MastodonResponse<List<Account>>> lookupFollowings({
  required String accountId,
  int? limit,
});