lookupFollowRequests abstract method

Future<MastodonResponse<List<Account>>> lookupFollowRequests({
  1. int? limit,
})

View pending follow requests.

Parameters

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

Endpoint Url

  • GET /api/v1/follow_requests HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • follow
  • read:follows

Reference

Implementation

Future<MastodonResponse<List<Account>>> lookupFollowRequests({
  int? limit,
});