createFollowingTag abstract method

Future<MastodonResponse<Tag>> createFollowingTag({
  1. required String tagId,
})

Follow a hashtag.

Posts containing a followed hashtag will be inserted into your home timeline.

Parameters

  • tagId: The name of the hashtag.

Endpoint Url

  • POST /api/v1/tags/:id/follow HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • write:follows

Reference

Implementation

Future<MastodonResponse<Tag>> createFollowingTag({
  required String tagId,
});