HumHub icon

HumHub

Consume HumHub API (v.0.1.8)

Actions126

Overview

This node interacts with the HumHub API to perform operations related to 'Like' resources. Specifically, the 'Get' operation retrieves details of a specific like by its ID. This is useful in scenarios where you want to fetch information about a particular like entity within the HumHub social network platform, such as for analytics, reporting, or integration with other systems.

Use Case Examples

  1. Retrieve details of a like by its ID to display in a dashboard.
  2. Fetch like information to analyze user engagement on posts or comments.

Properties

Name Meaning
Authentication Method of authentication to use for the API request, either Basic Auth or JWT Token.
ID The unique identifier of the like to retrieve.

Output

JSON

  • id - The ID of the like.
  • userId - The ID of the user who made the like.
  • contentId - The ID of the content that was liked.
  • createdAt - Timestamp when the like was created.

Dependencies

  • HumHub API

Troubleshooting

  • Ensure the provided ID is valid and exists in the HumHub system to avoid 'not found' errors.
  • Verify that the authentication credentials (Basic Auth or JWT Token) are correctly configured and have the necessary permissions.
  • Handle API rate limits or network issues that might cause request failures.

Discussion