lookupFollowedTags abstract method

Future<MastodonResponse<List<Tag>>> lookupFollowedTags({
  1. int? limit,
})

View all followed tags.

Parameters

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

Endpoint Url

  • GET /api/v1/followed_tags HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • read:follows

Reference

Implementation

Future<MastodonResponse<List<Tag>>> lookupFollowedTags({int? limit});