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 operations like listing comments, listing replies, replying to comments, deleting comments, editing comments, hiding/unhiding comments, and liking/unliking comments. The 'Delete Comment' operation allows users to delete a specific comment or reply by providing its comment ID. This node is useful for automating Facebook Page comment management, such as moderating comments or cleaning up unwanted content.

Use Case Examples

  1. Deleting a specific comment on a Facebook Page post by providing the comment ID.
  2. Automating comment moderation workflows by deleting inappropriate comments automatically.

Properties

Name Meaning
Authentication Method to provide credentials for Facebook API access, either Access Token or OAuth2.
Request Timeout (ms) Timeout duration in milliseconds for each HTTP request to the Facebook API.
Max Retries Number of retry attempts on HTTP 429, 5xx errors, or timeouts.
Comment ID The ID of the comment to delete, required for the delete operation.

Output

JSON

  • success - Indicates if the delete operation was successful.
  • id - The ID of the deleted comment.
  • deleted - Boolean flag indicating the comment was deleted.

Dependencies

  • Facebook Graph API

Troubleshooting

  • Invalid Comment ID format error: Ensure the comment ID is numeric or in the numeric_numeric format.
  • Page ID required error when using OAuth2: Provide the Page ID manually, select from your pages, or set a default Page ID in credentials.
  • Network/connection issues: Check firewall, DNS, SSL certificates, and proxy settings if requests fail due to connection errors.
  • Authentication errors: Ensure the access token is a valid Page token, not a user token, and has the necessary permissions.

Links

Discussion