Download posts from Linkedin with Node.js
Use Linkedin post scraper to get posts from Linkedin with Node.js. Want to grab posts from Linkedin? Linkedin post scraper makes it quick and easy. Just tell it what to download and you’ll get your Linkedin post available offline, for whenever you want it.
1Get an Apify account
You can’t get data from the inside of the platform if you’re not authorized in it. So to get started, create an Apify account. It only takes a minute and it's free of charge.
Sign up for free2Initialize the API using your token
After you’ve registered, it’s time to add your secret authentication token. You can find your API token on the Integrations page in Apify Console.
Get your token in Console3Define input and copy it in JSON
To get the data from Linkedin you first need to use Linkedin post scraper to extract it. So let’s add a simple input and transfer it to your code. You can copy your input as a JSON from the Linkedin post scraper’s Input tab in Console.
4Integrate Apify into your codebase
Finally, call the Linkedin post scraper from your Node.js project. Use Apify Client or Endpoints. You’ll be able to export scraped Linkedin data in no time by running the sample code below ↓.
5Monitor your Linkedin post scraper runs
Head over to our dashboard and see how Linkedin post scraper runs are executed in real time. Here you can also download the run logs and keep an eye on the API’s performance.
Go to dashboardGet your Node.js project up and running
Add-on to step 4: start your Node.js project by executing this code snippet in your go-to environment.
1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4// Replace the '<YOUR_API_TOKEN>' with your token
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9// Prepare Actor input
10const input = {
11 "urls": [
12 "https://www.linkedin.com/posts/linkedin_no-is-a-complete-sentence-activity-7247998907798978560-J_hB?utm_source=share&utm_medium=member_desktop",
13 "https://www.linkedin.com/company/amazon",
14 "https://www.linkedin.com/search/results/content/?datePosted=%22past-24h%22&keywords=ai&origin=FACETED_SEARCH"
15 ],
16 "minDelay": 2,
17 "maxDelay": 8,
18 "proxy": {
19 "useApifyProxy": true,
20 "apifyProxyCountry": "US"
21 }
22};
23
24// Run the Actor and wait for it to finish
25const run = await client.actor("curious_coder/linkedin-post-search-scraper").call(input);
26
27// Fetch and print Actor results from the run's dataset (if any)
28console.log('Results from dataset');
29console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
30const { items } = await client.dataset(run.defaultDatasetId).listItems();
31items.forEach((item) => {
32 console.dir(item);
33});
34
35// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Enjoy $5 of free platform usage every month to explore and kickstart your projects.
Get started on Apify instantly without the hassle of entering your credit card information.
Join our Discord community to ask questions, share ideas, and connect with developers.
🔥 LinkedIn Jobs Scraper
bebity/linkedin-jobs-scraper
ℹ️ Designed for both personal and professional use, simply enter your desired job title and location to receive a tailored list of job opportunities. Try it today!
4.4k
96
Linkedin post scraper
curious_coder/linkedin-post-search-scraper
Scrape linkedin posts or updates from linkedin post search results. Supports advanced linkedin search filters. Extract posts from any linkedin member
2.9k
98
Linkedin Employees Scraper
caprolok/linkedin-employees-scraper
Effortlessly gather LinkedIn URLs and names of employees in bulk. Ideal for HR and recruitment, this tool quickly provides essential contact information, simplifying talent search and networking opportunities.
601
17
Ready to start downloading Linkedin posts?
You just need a free Apify account
Instagram Photos Downloader
easyapi/instagram-photos-downloader
Effortlessly save high-quality images from Instagram posts and profiles. Simply copy the photo URL, paste it into our tool, and download your favorite images in HD. Enjoy a user-friendly experience without the need for an Instagram account. Start preserving your favorite moments today!
30
4
Instagram Videos Downloader
easyapi/instagram-videos-downloader
A powerful Instagram video downloader that helps you download videos from Instagram posts, reels, and stories. Support batch downloading with multiple URLs.
10
0
Snapchat Video Downloader
easyapi/snapchat-video-downloader
Download videos from Snapchat stories and posts with ease. This Actor helps you extract high-quality videos along with metadata from Snapchat URLs. Perfect for content creators, social media managers, and anyone looking to save Snapchat content. 🎥✨
2
0
Apify’s wide range of tools use a technique called web scraping to extract public data from websites. These scrapers access the website the same way as you would with a browser, find the image, video, or text you want, and download it for you. They’re a fast and efficient way to get data at scale.
Web scraping is a handy method for collecting information from various websites. It's like having a digital assistant that visits web pages on your behalf, pulling out the details you need such as prices, descriptions, addresses, and contact information. But it's more than just text; this tool can also download images and videos, making it a comprehensive way to gather content from the online world. It takes care of all the complex, technical parts, so you don't have to.
Web scraping is a method where you choose websites to collect specific content, including text, images, and videos. You begin by identifying the web pages that host the visual media you're interested in. Next, you use a web scraping tool tailored to locate the parts of the page containing the images or videos you want to download. Once the tool is set up and run, it navigates to the chosen web pages, identifies the images and videos, and downloads them for you. It's a streamlined way to gather pictures and videos from online sources without having to manually download each item.
Yes, web scraping is legal for gathering public information from websites. But be careful with personal or confidential data, as well as intellectual property, because laws and regulations might protect them. It's good practice to check the website's rules or terms of service to know what's allowed. If you're not sure, getting legal advice can help ensure you're using web scraping correctly and within the law.
Actors are serverless cloud programs that run on the Apify platform and do computing jobs. They’re called Actors because, like human actors, they perform actions based on a script. They can perform anything from simple actions (such as filling out a web form or sending an email) to complex operations (such as crawling an entire website or removing duplicates from a large dataset). Actor runs can be as short or as long as necessary. They could last seconds, hours, or even run infinitely.