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 more

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4client = ApifyClient("<YOUR_API_TOKEN>")
5
6# Prepare the Actor input
7run_input = {
8    "pageNames": ["humansofnewyork"],
9    "maxPosts": 3,
10    "groupLimit": 0,
11    "commentsLimit": 0,
12    "resultsLimit": 10,
13    "proxy": {
14        "useApifyProxy": True,
15        "apifyProxyGroups": ["RESIDENTIAL"],
16    },
17}
18
19# Run the Actor and wait for it to finish
20run = client.actor("apify/facebook-page-posts-checker").call(run_input=run_input)
21
22# Fetch and print Actor results from the run's dataset (if there are any)
23print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
24for item in client.dataset(run["defaultDatasetId"]).iterate_items():
25    print(item)
26
27# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start
Developer
Maintained by Apify
Actor metrics
  • 28 monthly users
  • 12 stars
  • 99.8% runs succeeded
  • 5.8 days response time
  • Created in May 2022
  • Modified 2 months ago