페이스북 그룹 크롤러
초급
이것은AI분야의자동화 워크플로우로, 3개의 노드를 포함합니다.주로 Airtop, FormTrigger 등의 노드를 사용하며인공지능 기술을 결합하여 스마트 자동화를 구현합니다. Airtop을 사용하여 Facebook 그룹 게시물을 추출
사전 요구사항
- •AI 서비스 API Key(예: OpenAI, Anthropic 등)
사용된 노드 (3)
카테고리
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "1LBhz8JFWZgT5cui",
"meta": {
"instanceId": "28a947b92b197fc2524eaba16e57560338657b2b0b5796300b2f1cedc1d0d355",
"templateCredsSetupCompleted": true
},
"name": "Facebook Group Scraper",
"tags": [],
"nodes": [
{
"id": "22789f80-781f-42c4-89c4-ebbf32745a05",
"name": "폼 제출 시",
"type": "n8n-nodes-base.formTrigger",
"position": [
0,
0
],
"webhookId": "bf8d7e5f-f886-4586-affa-03c839ce3d70",
"parameters": {
"options": {},
"formTitle": "Facebook Group Scraper",
"formFields": {
"values": [
{
"fieldLabel": "Facebook Group URL",
"placeholder": "The URL of the Facebook Group feed you want to scrape",
"requiredField": true
},
{
"fieldLabel": "Airtop Profile",
"placeholder": "Airtop Profile authenticated to Facebook",
"requiredField": true
}
]
},
"formDescription": "This automation will extract information from a Facebook group"
},
"typeVersion": 2.2
},
{
"id": "31c32d54-5fe3-4125-9e29-029a1c955822",
"name": "Airtop",
"type": "n8n-nodes-base.airtop",
"position": [
220,
0
],
"parameters": {
"url": "={{ $json['Facebook Group URL'] }}",
"prompt": "This is a Facebook group feed. \nExtract up to 5 non-sponsored posts, for each post extract:\n - Post text\n- Post URL\n- Page/profile URL\n- Timestamp\t\n- Number of likes \n- Number if shares\n- Number of comments\n- Page or profile details\t\n- Post thumbnail",
"resource": "extraction",
"profileName": "={{ $json['Airtop Profile'] }}",
"sessionMode": "new",
"additionalFields": {
"outputSchema": "{\n \"type\": \"object\",\n \"properties\": {\n \"posts\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"post_text\": {\n \"type\": \"string\",\n \"description\": \"The text content of the post.\"\n },\n \"post_url\": {\n \"type\": \"string\",\n \"description\": \"The URL of the post.\"\n },\n \"page_profile_url\": {\n \"type\": \"string\",\n \"description\": \"The URL of the page or profile that made the post.\"\n },\n \"timestamp\": {\n \"type\": \"string\",\n \"description\": \"The timestamp of when the post was made.\"\n },\n \"number_of_likes\": {\n \"type\": \"integer\",\n \"description\": \"The number of likes the post has received.\"\n },\n \"number_of_shares\": {\n \"type\": \"integer\",\n \"description\": \"The number of times the post has been shared.\"\n },\n \"number_of_comments\": {\n \"type\": \"integer\",\n \"description\": \"The number of comments on the post.\"\n },\n \"page_profile_details\": {\n \"type\": \"string\",\n \"description\": \"Details about the page or profile that made the post.\"\n },\n \"post_thumbnail\": {\n \"type\": \"string\",\n \"description\": \"The URL of the post's thumbnail image.\"\n }\n },\n \"required\": [\n \"post_text\",\n \"post_url\",\n \"page_profile_url\",\n \"timestamp\",\n \"number_of_likes\",\n \"number_of_shares\",\n \"number_of_comments\",\n \"page_profile_details\",\n \"post_thumbnail\"\n ],\n \"additionalProperties\": false\n }\n }\n },\n \"required\": [\n \"posts\"\n ],\n \"additionalProperties\": false,\n \"$schema\": \"http://json-schema.org/draft-07/schema#\"\n}",
"paginationMode": "infinite-scroll",
"parseJsonOutput": true
}
},
"credentials": {
"airtopApi": {
"id": "Yi4YPNnovLVUjFn5",
"name": "Airtop Official Org"
}
},
"typeVersion": 1
},
{
"id": "8ada5770-7a77-4e75-8342-f0cad8146e4d",
"name": "스티커 메모",
"type": "n8n-nodes-base.stickyNote",
"position": [
-980,
-680
],
"parameters": {
"color": 5,
"width": 820,
"height": 1380,
"content": "README\n\n# Facebook Group Scraper\n\n## Use Case\n\nExtracting content from Facebook Groups allows community managers, marketers, and researchers to gather insights, monitor discussions, and collect engagement metrics efficiently. This automation streamlines the process of retrieving non-sponsored post data from group feeds.\n\n## What This Automation Does\n\nThis automation extracts key post details from a Facebook Group feed using the following input parameters:\n\n* **Facebook Group URL**: The URL of the Facebook Group feed you want to scrape.\n* **Airtop Profile**: The name of your [Airtop Profile](https://portal.airtop.ai/browser-profiles) authenticated to Facebook.\n\nIt returns up to 5 non-sponsored posts with the following attributes for each:\n\n* Post text\n* Post URL\n* Page/profile URL\n* Timestamp\n* Number of likes\n* Number of shares\n* Number of comments\n* Page or profile details\n* Post thumbnail\n\n## How It Works\n\n1. **Form Trigger**: Collects the Facebook Group URL and Airtop Profile via a form.\n2. **Browser Automation**:\n\n * Initiates a new browser session using Airtop.\n * Navigates to the provided Facebook Group feed.\n * Uses an AI prompt to extract post data, including interaction metrics and profile information.\n3. **Structured Output**: The results are returned in a defined JSON schema, ready for downstream use.\n\n## Setup Requirements\n\n1. [Airtop API Key](https://portal.airtop.ai/api-keys) — Free to generate.\n2. An [Airtop Profile](https://portal.airtop.ai/browser-profiles) logged into Facebook.\n3. An [n8n instance](https://n8n.io/) with the Airtop integration enabled.\n\n## Next Steps\n\n* **Integrate With Analytics Tools**: Feed the output into dashboards or analytics platforms to monitor community engagement.\n* **Automate Alerts**: Trigger notifications for posts matching certain criteria (e.g., high engagement, keywords).\n* **Combine With Comment Automation**: Extend this to reply to posts or engage with users using other Airtop automations.\n\nLet me know if you’d like this saved as a `.md` file or included in your Airtop automation library.\n"
},
"typeVersion": 1
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "33402a6d-082e-4fb9-8ad0-90275049a366",
"connections": {
"22789f80-781f-42c4-89c4-ebbf32745a05": {
"main": [
[
{
"node": "31c32d54-5fe3-4125-9e29-029a1c955822",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
초급 - 인공지능
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
Airtop 웹 프록시
Claude 3.5 Haiku 및 Airtop 브라우저 에이전트를 사용한 웹 상호작용 자동화
Set
Slack
Airtop
+
Set
Slack
Airtop
18 노드Cesar @ Airtop AI
인공지능
X - 스레드 내 응답
Airtop 브라우저 자동화를 사용한 X 스레드 자동 응답
Set
Wait
Airtop
+
Set
Wait
Airtop
11 노드Airtop
인공지능
경쟁 모니터링 LinkedIn
Airtop을 사용하여 경쟁자 LinkedIn를 모니터링합니다.
Slack
Airtop
Google Sheets
+
Slack
Airtop
Google Sheets
6 노드Airtop
인공지능
LinkedIn 게시물 상호작용 데이터 추출기 - 템플릿
Airtop을 사용하여 LinkedIn 게시물 상호작용 데이터를 추출
Set
Code
Airtop
+
Set
Code
Airtop
7 노드Airtop
마케팅
X 게시물 댓글 추출
Airtop 브라우저를 사용하여 X 포스트 댓글 자동화 추출 및 구조화
Set
Airtop
Form Trigger
+
Set
Airtop
Form Trigger
7 노드Airtop
마케팅
회사 LinkedIn 페이지 가져오기
Airtop을 사용하여 회사 LinkedIn 페이지를 찾습니다.
If
Set
Airtop
+
If
Set
Airtop
16 노드Airtop
영업
워크플로우 정보
난이도
초급
노드 수3
카테고리1
노드 유형3
저자
Airtop
@cesar-at-airtopAirtop provides an intelligent browser automation API for AI agents, enabling seamless web interaction, including login, navigation, and data extraction from any site, even those with complex authentication - all with natural language instructions.In simple terms, we allow you to automate anything humans can do online, on any site with just words
외부 링크
n8n.io에서 보기 →
이 워크플로우 공유