lookupBlockedDomains abstract method

Future<MastodonResponse<List<String>>> lookupBlockedDomains({
  1. int? limit,
})

View domains the user has blocked.

Parameters

  • limit: Maximum number of results to return. Defaults to 100 domain blocks. Max 200 domain blocks.

Endpoint Url

  • GET /api/v1/domain_blocks HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • follow
  • read:blocks

Reference

Implementation

Future<MastodonResponse<List<String>>> lookupBlockedDomains({
  int? limit,
});