NotificaMe Hub icon

NotificaMe Hub

Integração com NotificaMe Hub API

Overview

This node integrates with the NotificaMe Hub API to post content on Instagram. It supports creating new posts on different Instagram sections such as Feed, Stories, and Reels. Users can specify the type of post, provide a public URL for the media file, and add an optional caption.

Common scenarios include:

  • Automating social media marketing by scheduling posts to Instagram feeds or stories.
  • Sharing promotional videos or images directly from external storage via URLs.
  • Managing multiple Instagram channels programmatically through their channel IDs.

Practical example:

  • A marketing team wants to automatically post daily product images to their Instagram feed with captions describing each product.
  • A content creator uploads videos to a public server and uses this node to publish them as Instagram reels.

Properties

Name Meaning
ID Do Canal The Instagram channel ID where the post will be published.
Tipo Da Postagem The type of Instagram post:
- Feed (images only)
- Stories (images and videos)
- Reels (videos only)
URL Do Arquivo Public URL of the media file to be posted (image or video depending on post type).
Legenda Caption text to accompany the Instagram post (optional).

Output

The node outputs JSON data representing the result of the post operation. This typically includes confirmation details such as post ID, status, or any metadata returned by the NotificaMe Hub API after posting to Instagram.

If the node supports binary data output (not explicitly shown in the provided code), it would represent media files or related attachments, but here the focus is on JSON response data confirming the post creation.

Dependencies

  • Requires an active connection to the NotificaMe Hub API.
  • Needs an API key credential configured in n8n for authentication with the NotificaMe Hub service.
  • The media file must be accessible via a public URL; the node does not handle file uploads directly.

Troubleshooting

  • Invalid Channel ID: If the provided Instagram channel ID is incorrect or unauthorized, the API may return an error. Verify the channel ID and permissions.
  • Unsupported Media Type: Posting a video to the Feed or an image to Reels may fail. Ensure the media type matches the selected post type.
  • URL Accessibility: The media URL must be publicly accessible. Private or expired URLs will cause failures.
  • API Authentication Errors: Check that the API key credential is valid and has necessary permissions.
  • Caption Length Limits: Instagram imposes limits on caption length; exceeding these may cause errors.

Links and References

Discussion