Back to Integrations
integrationGoogle Cloud Firestore node
integrationLinkedIn node

Google Cloud Firestore and LinkedIn integration

Save yourself the work of writing custom integrations for Google Cloud Firestore and LinkedIn and use n8n instead. Build adaptable and scalable Data & Storage, Marketing, and Communication workflows that work with your technology stack. All within a building experience you will love.

How to connect Google Cloud Firestore and LinkedIn

  • Step 1: Create a new workflow
  • Step 2: Add and configure nodes
  • Step 3: Connect
  • Step 4: Customize and extend your integration
  • Step 5: Test and activate your workflow

Step 1: Create a new workflow and add the first step

In n8n, click the "Add workflow" button in the Workflows tab to create a new workflow. Add the starting point – a trigger on when your workflow should run: an app event, a schedule, a webhook call, another workflow, an AI chat, or a manual trigger. Sometimes, the HTTP Request node might already serve as your starting point.

Google Cloud Firestore and LinkedIn integration: Create a new workflow and add the first step

Step 2: Add and configure Google Cloud Firestore and LinkedIn nodes

You can find Google Cloud Firestore and LinkedIn in the nodes panel. Drag them onto your workflow canvas, selecting their actions. Click each node, choose a credential, and authenticate to grant n8n access. Configure Google Cloud Firestore and LinkedIn nodes one by one: input data on the left, parameters in the middle, and output data on the right.

Google Cloud Firestore and LinkedIn integration: Add and configure Google Cloud Firestore and LinkedIn nodes

Step 3: Connect Google Cloud Firestore and LinkedIn

A connection establishes a link between Google Cloud Firestore and LinkedIn (or vice versa) to route data through the workflow. Data flows from the output of one node to the input of another. You can have single or multiple connections for each node.

Google Cloud Firestore and LinkedIn integration: Connect Google Cloud Firestore and LinkedIn

Step 4: Customize and extend your Google Cloud Firestore and LinkedIn integration

Use n8n's core nodes such as If, Split Out, Merge, and others to transform and manipulate data. Write custom JavaScript or Python in the Code node and run it as a step in your workflow. Connect Google Cloud Firestore and LinkedIn with any of n8n’s 1000+ integrations, and incorporate advanced AI logic into your workflows.

Google Cloud Firestore and LinkedIn integration: Customize and extend your Google Cloud Firestore and LinkedIn integration

Step 5: Test and activate your Google Cloud Firestore and LinkedIn workflow

Save and run the workflow to see if everything works as expected. Based on your configuration, data should flow from Google Cloud Firestore to LinkedIn or vice versa. Easily debug your workflow: you can check past executions to isolate and fix the mistake. Once you've tested everything, make sure to save your workflow and activate it.

Google Cloud Firestore and LinkedIn integration: Test and activate your Google Cloud Firestore and LinkedIn workflow

Automated AI news curation and LinkedIn posting with GPT-5 and Firebase

What this workflow does

Automatically:
fetches fresh news,
filters out aggregators/PR wires and duplicates,
writes a human-sounding LinkedIn post with GPT,
downloads the article image to verify it’s usable,
publishes to LinkedIn (with or without media),
and logs the posted titles in Firestore to avoid re-posting.

Runs on a daily schedule (cron) and supports two post variants:
• Case 1: article has a description → richer post
• Case 2: no description → short, still human and casual

How it works (high level flow)
• Schedule Trigger (0 10,12,19,21 * * *): runs at 10:00, 12:00, 19:00, 21:00 (server timezone).
• Firestore (Get Previous News Titles): loads previously posted titles (document asma/x20) to de-dupe.
• HTTP Request (API NEWS): calls newsapi.org with query “AI Startup” for example, last 24–48h window, searchIn=title, sorted by publishedAt.
• Code: Select Articles:
• excludes Biztoc and common aggregators/PR wires (Techmeme, TheFly, PRNewswire, GlobeNewswire, MarketWatch press-releases, Medium, Substack, Yahoo consent, etc.),
• requires valid URL + image,
• groups by topic (normalized title + domain) and picks the best representative,
• sorts by recency and returns up to 10 unique articles.
• IF (URL & De-dupe checks): ensures link present and not already posted (compares against Firestore titles).
• IF (Description Checker): branches on presence of description.
• LLM Agents (2 prompts): generate a casual, human LinkedIn post in English (no emojis/links/markdown, 2–3 hashtags).
• Post setup: cleans the text, passes the image URL forward.
• HTTP Request (Image Downloader): retrieves the image as a file to confirm the link works.
• LinkedIn Publisher:
• If image OK → posts with media.
• Otherwise → posts text-only.
• Time Checkers + Firestore Upserts: after a successful publish, writes the article’s title to Firestore (asma/x20 fields title10, title12, title19, title21) so it won’t be posted again at other times.

Credentials & prerequisites
NewsAPI.org: API key (free tier works to start; mind rate limits).
• LinkedIn OAuth2: connected account with permission to create posts on your profile (uses “Person” target in the node).
• Google Firebase (Firestore): Service Account with read/write to the asma collection. The workflow uses document ID x20.

Setup (5 minutes)
Import the workflow and open it in n8n.
In API NEWS, set your NewsAPI key in the query param apiKey.
In Get Previous News Titles and Firebase Article Saver [1–8], attach your Google Service Account and confirm projectId, collection=asma.
In LinkedIn Publisher [1–4], attach your LinkedIn OAuth credential and ensure the Person is your profile URN.
(Optional) Adjust the cron in Hourly trigger (server timezone).
(Optional) Change the search query (q=AI startup), language, or time window in API NEWS.
Enable the workflow.

Customization tips
• Search scope: edit q, language, from/to in API NEWS to cover your niche.
• Aggregator policy: tweak the aggregatorDomains set in the Select Articles code node.
• Post voice: modify the LLM prompt (keeps the “human, slightly messy” tone).
• Hashtags: the prompt ends with 2–3 simple tags (#AI #Startups #Innovation) — change as you like.
• Posting times: change the cron or the downstream time-checker logic to map specific titles → time slots.
• No-image fallback: text-only path is already handled; replace with a placeholder image if you prefer always-with-media.

Notes & constraints
• Timezone: Schedule Trigger uses the n8n server timezone; adjust if your LinkedIn audience is elsewhere.
• De-dupe: this template stores last posted titles in one Firestore doc (asma/x20) under title10, title12, title19, title21. You can change the schema or keep a rolling history.
• Filtering: items missing URL or image are skipped by design. Yahoo consent pages are also skipped.
• LLM costs: posts are short; usage is modest, but keep an eye on your OpenAI billing.
• NewsAPI limits: free plans throttle requests; consider caching or widening the time window if you hit limits.

Troubleshooting
• Nothing posts: check NewsAPI quota/response, then see the URL checker and Description Checker branches.
• Image errors: some sites block hotlinking; the image download step will fall back to text-only posting.
• Duplicates appeared: verify Firestore upserts executed after posting and that your comparison uses the right fields.
• Wrong hours: confirm your n8n instance timezone and the cron expression.

Why this template

You get a robust “news → LinkedIn” autoposter that feels authentically human (no corporate vibes), avoids low-quality aggregators, prevents duplicates, and gracefully handles media — all with clean, modular nodes that are easy to tweak.

Nodes used in this workflow

Popular Google Cloud Firestore and LinkedIn workflows

+3

Automated AI News Curation and LinkedIn Posting with GPT-5 and Firebase

What this workflow does Automatically: fetches fresh news, filters out aggregators/PR wires and duplicates, writes a human-sounding LinkedIn post with GPT, downloads the article image to verify it’s usable, publishes to LinkedIn (with or without media), and logs the posted titles in Firestore to avoid re-posting. Runs on a daily schedule (cron) and supports two post variants: • Case 1: article has a description → richer post • Case 2: no description → short, still human and casual ⸻ How it works (high level flow) • Schedule Trigger (0 10,12,19,21 * * *): runs at 10:00, 12:00, 19:00, 21:00 (server timezone). • Firestore (Get Previous News Titles): loads previously posted titles (document asma/x20) to de-dupe. • HTTP Request (API NEWS): calls newsapi.org with query “AI Startup” for example, last 24–48h window, searchIn=title, sorted by publishedAt. • Code: Select Articles: • excludes Biztoc and common aggregators/PR wires (Techmeme, TheFly, PRNewswire, GlobeNewswire, MarketWatch press-releases, Medium, Substack, Yahoo consent, etc.), • requires valid URL + image, • groups by topic (normalized title + domain) and picks the best representative, • sorts by recency and returns up to 10 unique articles. • IF (URL & De-dupe checks): ensures link present and not already posted (compares against Firestore titles). • IF (Description Checker): branches on presence of description. • LLM Agents (2 prompts): generate a casual, human LinkedIn post in English (no emojis/links/markdown, 2–3 hashtags). • Post setup: cleans the text, passes the image URL forward. • HTTP Request (Image Downloader): retrieves the image as a file to confirm the link works. • LinkedIn Publisher: • If image OK → posts with media. • Otherwise → posts text-only. • Time Checkers + Firestore Upserts: after a successful publish, writes the article’s title to Firestore (asma/x20 fields title10, title12, title19, title21) so it won’t be posted again at other times. ⸻ Credentials & prerequisites • NewsAPI.org: API key (free tier works to start; mind rate limits). • LinkedIn OAuth2: connected account with permission to create posts on your profile (uses “Person” target in the node). • Google Firebase (Firestore): Service Account with read/write to the asma collection. The workflow uses document ID x20. ⸻ Setup (5 minutes) Import the workflow and open it in n8n. In API NEWS, set your NewsAPI key in the query param apiKey. In Get Previous News Titles and Firebase Article Saver [1–8], attach your Google Service Account and confirm projectId, collection=asma. In LinkedIn Publisher [1–4], attach your LinkedIn OAuth credential and ensure the Person is your profile URN. (Optional) Adjust the cron in Hourly trigger (server timezone). (Optional) Change the search query (q=AI startup), language, or time window in API NEWS. Enable the workflow. ⸻ Customization tips • Search scope: edit q, language, from/to in API NEWS to cover your niche. • Aggregator policy: tweak the aggregatorDomains set in the Select Articles code node. • Post voice: modify the LLM prompt (keeps the “human, slightly messy” tone). • Hashtags: the prompt ends with 2–3 simple tags (#AI #Startups #Innovation) — change as you like. • Posting times: change the cron or the downstream time-checker logic to map specific titles → time slots. • No-image fallback: text-only path is already handled; replace with a placeholder image if you prefer always-with-media. ⸻ Notes & constraints • Timezone: Schedule Trigger uses the n8n server timezone; adjust if your LinkedIn audience is elsewhere. • De-dupe: this template stores last posted titles in one Firestore doc (asma/x20) under title10, title12, title19, title21. You can change the schema or keep a rolling history. • Filtering: items missing URL or image are skipped by design. Yahoo consent pages are also skipped. • LLM costs: posts are short; usage is modest, but keep an eye on your OpenAI billing. • NewsAPI limits: free plans throttle requests; consider caching or widening the time window if you hit limits. ⸻ Troubleshooting • Nothing posts: check NewsAPI quota/response, then see the URL checker and Description Checker branches. • Image errors: some sites block hotlinking; the image download step will fall back to text-only posting. • Duplicates appeared: verify Firestore upserts executed after posting and that your comparison uses the right fields. • Wrong hours: confirm your n8n instance timezone and the cron expression. ⸻ Why this template You get a robust “news → LinkedIn” autoposter that feels authentically human (no corporate vibes), avoids low-quality aggregators, prevents duplicates, and gracefully handles media — all with clean, modular nodes that are easy to tweak.

Build your own Google Cloud Firestore and LinkedIn integration

Create custom Google Cloud Firestore and LinkedIn workflows by choosing triggers and actions. Nodes come with global operations and settings, as well as app-specific parameters that can be configured. You can also use the HTTP Request node to query data from any app or service with a REST API.

Google Cloud Firestore supported actions

Create
Create a document
Create or Update
Create a new document, or update the current one if it already exists (upsert)
Delete
Delete a document
Get
Get a document
Get Many
Get many documents from a collection
Query
Runs a query against your documents
Get Many
Get many root collections

LinkedIn supported actions

Create
Create a new post

FAQs

  • Can Google Cloud Firestore connect with LinkedIn?

  • Can I use Google Cloud Firestore’s API with n8n?

  • Can I use LinkedIn’s API with n8n?

  • Is n8n secure for integrating Google Cloud Firestore and LinkedIn?

  • How to get started with Google Cloud Firestore and LinkedIn integration in n8n.io?

Looking to integrate Google Cloud Firestore and LinkedIn in your company?

Over 3000 companies switch to n8n every single week

Why use n8n to integrate Google Cloud Firestore with LinkedIn

Build complex workflows, really fast

Build complex workflows, really fast

Handle branching, merging and iteration easily.
Pause your workflow to wait for external events.

Code when you need it, UI when you don't

Simple debugging

Your data is displayed alongside your settings, making edge cases easy to track down.

Use templates to get started fast

Use 1000+ workflow templates available from our core team and our community.

Reuse your work

Copy and paste, easily import and export workflows.

Implement complex processes faster with n8n

red iconyellow iconred iconyellow icon