Facebook (AI30DAY) icon

Facebook (AI30DAY)

Facebook Get Page List

Overview

This node operation retrieves a list of users who have sent messages (inboxed) to a specific Facebook Page identified by its Facebook ID. It supports pagination through cursor and limit parameters to control the number of users fetched per request. This is useful for managing and analyzing user interactions with a Facebook Page, such as customer support or marketing engagement.

Use Case Examples

  1. Fetch the first 100 users who have messaged a Facebook Page to analyze engagement.
  2. Paginate through users inboxed to a Facebook Page to build a contact list for follow-up messaging.

Properties

Name Meaning
Page Id The unique identifier of the Facebook Page to retrieve inboxed users from. Required for the operation.
Cursor A numeric cursor for pagination to fetch the next set of users inboxed to the page. Optional.
Limit The maximum number of users to retrieve in one request. Must be between 1 and 200. Required for the operation.

Output

JSON

  • users - Array of user objects who have messaged the Facebook Page.
  • nextCursor - Cursor value for fetching the next page of users, if available.

Dependencies

  • Requires an API key credential for Facebook API access.

Troubleshooting

  • Ensure the Page Id is correct and the API key has permissions to access the page's inbox.
  • If pagination does not work, verify the cursor value is valid and within the expected range.
  • Common errors include authentication failures due to invalid or expired API tokens, and rate limiting by Facebook API.

Links

Discussion