Facebook page posts checker avatar
Facebook page posts checker
Under maintenance
Try for free

30 days trial then $39.00/month - No credit card required now

View all Actors
This Actor is under maintenance.

This Actor may be unreliable while under maintenance. Would you like to try a similar Actor instead?

See alternative Actors
Facebook page posts checker

Facebook page posts checker

apify/facebook-page-posts-checker
Try for free

30 days trial then $39.00/month - No credit card required now

Facebook page checker extracts posts until several years from past, reviews and page details. Groups added as beta, less posts expected but with better details.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn mode

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "pageNames": [
11        "humansofnewyork"
12    ],
13    "maxPosts": 3,
14    "groupLimit": 0,
15    "commentsLimit": 0,
16    "resultsLimit": 10,
17    "proxy": {
18        "useApifyProxy": true,
19        "apifyProxyGroups": [
20            "RESIDENTIAL"
21        ]
22    }
23};
24
25(async () => {
26    // Run the Actor and wait for it to finish
27    const run = await client.actor("apify/facebook-page-posts-checker").call(input);
28
29    // Fetch and print Actor results from the run's dataset (if any)
30    console.log('Results from dataset');
31    const { items } = await client.dataset(run.defaultDatasetId).listItems();
32    items.forEach((item) => {
33        console.dir(item);
34    });
35})();
Developer
Maintained by Apify
Actor metrics
  • 23 monthly users
  • 99.7% runs succeeded
  • 4.7 days response time
  • Created in May 2022
  • Modified 6 months ago