Mastodon icon

Mastodon

Interact with Mastodon API

Overview

This node interacts with the Mastodon API to manage featured tags on a Mastodon instance. Specifically, the 'Unfeature Tag' operation removes a tag from the list of featured tags on the specified Mastodon instance. This is useful for administrators or users managing the visibility of tags on their Mastodon server, allowing them to dynamically update which tags are highlighted or promoted.

Use Case Examples

  1. An administrator wants to remove a tag from the featured tags list on their Mastodon instance to keep the featured tags relevant and up-to-date.
  2. A user automates the process of unfeaturing tags that no longer meet certain criteria or popularity thresholds.

Properties

Name Meaning
Mastodon URL The URL of the Mastodon instance to connect to for managing featured tags.
Tag ID The ID of the featured tag to remove from the Mastodon instance.

Output

JSON

  • json - The JSON response from the Mastodon API after attempting to unfeature the specified tag, typically confirming the removal or providing status information.

Dependencies

  • Requires an OAuth2 API credential for Mastodon to authenticate and authorize API requests.

Troubleshooting

  • Ensure the Mastodon URL is correct and accessible; incorrect URLs will cause connection failures.
  • Verify that the Tag ID provided exists and is currently featured; attempting to unfeature a non-existent or already unfeatured tag may result in errors.
  • Check that the OAuth2 credentials have the necessary permissions to modify featured tags on the Mastodon instance.
  • Common error messages include 'The operation "unfeature" for resource "featuredTags" is not implemented!' if the operation is not supported, or authentication errors if credentials are invalid or expired.

Discussion