Facebook Comments

Access Facebook Page comments with the Graph API: list, reply (with tagging and images), and view replies

Overview

This node interacts with Facebook Page comments via the Facebook Graph API, specifically supporting the operation to hide a comment on a Facebook Page. It allows users to hide a comment by providing the comment's ID, making the comment invisible on the page. This is useful for managing page interactions, moderating content, or temporarily hiding inappropriate comments without deleting them.

Use Case Examples

  1. Hide a specific comment on a Facebook Page by providing its comment ID to prevent it from being visible to the public.
  2. Use this node as part of a workflow to automatically hide comments containing certain keywords or from specific users.

Properties

Name Meaning
Authentication Method to provide credentials for Facebook API access, either Access Token or OAuth2.
Request Timeout (ms) Maximum time in milliseconds to wait for each HTTP request before timing out.
Max Retries Number of retry attempts on HTTP 429, 5xx errors, or timeouts.
Comment ID The unique identifier of the Facebook comment to hide.

Output

JSON

  • success - Indicates if the hide comment operation was successful.
  • id - The ID of the comment that was hidden.
  • hidden - Boolean flag indicating the comment is hidden (true).

Dependencies

  • Requires Facebook Graph API credentials, either an access token or OAuth2 authentication token.

Troubleshooting

  • Ensure the Comment ID is in the correct format (numeric or numeric_numeric).
  • If using OAuth2 authentication, a valid Page ID must be provided or set as default in credentials.
  • Network or connection issues may cause request failures; check firewall, DNS, SSL certificates, and proxy settings.
  • If using Access Token authentication, ensure the token is a valid Page token, not a user token.
  • Error messages may include Facebook API error details; verify token permissions and scopes (pages_manage_*).

Links

Discussion