Notion에서 LinkedIn으로
중급
이것은Sales, Marketing분야의자동화 워크플로우로, 13개의 노드를 포함합니다.주로 Code, Merge, Notion, LinkedIn, Aggregate 등의 노드를 사용하며. Notion을 활용한 일일 LinkedIn 게시물 자동화 워크플로우
사전 요구사항
- •Notion API Key
- •LinkedIn API 인증 정보
- •대상 API의 인증 정보가 필요할 수 있음
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "0pVPSW4PzJZLLqSf",
"meta": {
"instanceId": "8e47d02981c11ba904b56e6bd77877c35ef5c9aa1cdc4076bcb72bbb235efa38"
},
"name": "Notion to Linkedin",
"tags": [],
"nodes": [
{
"id": "d922cf0c-f1c2-40ff-927c-d0d3e2fb7f27",
"name": "Merge",
"type": "n8n-nodes-base.merge",
"position": [
2140,
460
],
"parameters": {
"mode": "combine",
"options": {},
"combinationMode": "mergeByPosition"
},
"typeVersion": 2.1
},
{
"id": "8c5f68d8-f11d-4b37-b0d8-3abd1b681b56",
"name": "Sticky Note",
"type": "n8n-nodes-base.stickyNote",
"position": [
780,
440
],
"parameters": {
"color": 4,
"height": 141.4092845296238,
"content": "## Start the flow every day at the same time"
},
"typeVersion": 1
},
{
"id": "d10de4f3-6e90-474f-bd68-25aae2037b7b",
"name": "Sticky Note1",
"type": "n8n-nodes-base.stickyNote",
"position": [
1240,
312.5835468325357
],
"parameters": {
"color": 6,
"width": 367.12018536439575,
"height": 382.294335406698,
"content": "## Fetch the day's post from my Notion database"
},
"typeVersion": 1
},
{
"id": "a63bcc85-ec8b-424f-a53c-e4c07db3c7c8",
"name": "Sticky Note2",
"type": "n8n-nodes-base.stickyNote",
"position": [
1642.6949426092506,
313.81962236044654
],
"parameters": {
"color": 6,
"width": 627.4768047417825,
"height": 380.3367219655605,
"content": "## Process and format the post"
},
"typeVersion": 1
},
{
"id": "d7c0f13c-ebbe-4000-bd8f-d1180d65d02a",
"name": "Schedule Trigger",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
1060,
460
],
"parameters": {
"rule": {
"interval": [
{
"triggerAtHour": 15
}
]
}
},
"typeVersion": 1.2
},
{
"id": "7bebcb2d-1642-48ce-a511-bb0f561ca5cf",
"name": "당일 게시물 테이블 필터링",
"type": "n8n-nodes-base.notion",
"position": [
1280,
460
],
"parameters": {
"filters": {
"conditions": [
{
"key": "Date|date",
"date": "={{ $today.format(\"yyyy/mM/dd\") }}",
"condition": "equals"
}
]
},
"options": {},
"resource": "databasePage",
"operation": "getAll",
"databaseId": {
"__rl": true,
"mode": "list",
"value": "f09dc21b-1070-4d5a-bf7f-a9ab3dbb69fb",
"cachedResultUrl": "https://www.notion.so/f09dc21b10704d5abf7fa9ab3dbb69fb",
"cachedResultName": "Postagens"
},
"filterType": "manual"
},
"credentials": {
"notionApi": {
"id": "faERNMuBrkAfVaJR",
"name": "Notion Weck"
}
},
"typeVersion": 2.2
},
{
"id": "ee61bc59-164b-45b4-8b49-57cdba7d298b",
"name": "페이지 콘텐츠 가져오기",
"type": "n8n-nodes-base.notion",
"position": [
1480,
460
],
"parameters": {
"blockId": {
"__rl": true,
"mode": "url",
"value": "={{ $json.url }}"
},
"resource": "block",
"operation": "getAll",
"returnAll": true
},
"credentials": {
"notionApi": {
"id": "faERNMuBrkAfVaJR",
"name": "Notion Weck"
}
},
"typeVersion": 2.2
},
{
"id": "52d1ffef-11e8-4635-bbb8-05e915034379",
"name": "Notion 블록 통합",
"type": "n8n-nodes-base.aggregate",
"position": [
1680,
460
],
"parameters": {
"options": {},
"fieldsToAggregate": {
"fieldToAggregate": [
{
"fieldToAggregate": "content"
},
{
"fieldToAggregate": "image.file.url"
}
]
}
},
"typeVersion": 1
},
{
"id": "8617c530-382b-402b-9c0b-aeb4df2bb920",
"name": "게시물 형식 지정",
"type": "n8n-nodes-base.code",
"position": [
1900,
360
],
"parameters": {
"jsCode": "const notionData = items[0].json.content;\n\nlet formattedText = notionData[0] \n\nfor (let i = 1; i < notionData.length; i++) {\n if (notionData[i].startsWith('-')) {\n formattedText += '\\n\\n' + notionData[i];\n } else {\n formattedText += '\\n' + notionData[i];\n }\n}\n\nreturn [{ formattedText: formattedText }];\n"
},
"typeVersion": 2
},
{
"id": "0f226cfe-eb31-469a-8e7c-a21192adbd4c",
"name": "이미지 다운로드",
"type": "n8n-nodes-base.httpRequest",
"position": [
1900,
560
],
"parameters": {
"url": "={{ $json.url[0] }}",
"options": {}
},
"typeVersion": 4.2
},
{
"id": "81a1e39c-c7ea-4635-84fc-a8ae05cfd8f3",
"name": "LinkedIn에 게시",
"type": "n8n-nodes-base.linkedIn",
"position": [
2360,
460
],
"parameters": {
"text": "={{ $json.formattedText }}",
"person": "CcS-_lLyzG",
"additionalFields": {},
"shareMediaCategory": "IMAGE"
},
"credentials": {
"linkedInOAuth2Api": {
"id": "HZbihVPNwXzWRzgU",
"name": "LinkedIn account"
}
},
"typeVersion": 1
},
{
"id": "61b92eb8-1bf8-4e57-9e07-1a39e457ecfb",
"name": "notion 데이터베이스 게시 상태 업데이트",
"type": "n8n-nodes-base.notion",
"position": [
2620,
460
],
"parameters": {
"pageId": {
"__rl": true,
"mode": "url",
"value": "={{ $('Filter the table for the day\\'s post').item.json.url }}"
},
"options": {},
"resource": "databasePage",
"operation": "update",
"propertiesUi": {
"propertyValues": [
{
"key": "Status|select",
"selectValue": "Published"
}
]
}
},
"credentials": {
"notionApi": {
"id": "faERNMuBrkAfVaJR",
"name": "Notion Weck"
}
},
"typeVersion": 2.2
},
{
"id": "397f3772-bb2b-4e58-99f8-2b62cc514b7a",
"name": "Sticky Note3",
"type": "n8n-nodes-base.stickyNote",
"position": [
760,
120
],
"parameters": {
"color": 3,
"width": 567.6073693795047,
"height": 137.6834217043934,
"content": "## 1. Setup\nSet up your Notion and LinkedIn credentials.\nAttention to the LinkedIn credential: to post on your personal or company profile, you need to have a company page assigned to your profile. After that, you can choose where you want to post."
},
"typeVersion": 1
}
],
"active": false,
"pinData": {},
"settings": {
"callerPolicy": "workflowsFromSameOwner",
"executionOrder": "v1",
"executionTimeout": 30,
"saveManualExecutions": true
},
"versionId": "d6f51bb9-7320-4984-a009-b0f49073349a",
"connections": {
"d922cf0c-f1c2-40ff-927c-d0d3e2fb7f27": {
"main": [
[
{
"node": "81a1e39c-c7ea-4635-84fc-a8ae05cfd8f3",
"type": "main",
"index": 0
}
]
]
},
"0f226cfe-eb31-469a-8e7c-a21192adbd4c": {
"main": [
[
{
"node": "d922cf0c-f1c2-40ff-927c-d0d3e2fb7f27",
"type": "main",
"index": 1
}
]
]
},
"8617c530-382b-402b-9c0b-aeb4df2bb920": {
"main": [
[
{
"node": "d922cf0c-f1c2-40ff-927c-d0d3e2fb7f27",
"type": "main",
"index": 0
}
]
]
},
"d7c0f13c-ebbe-4000-bd8f-d1180d65d02a": {
"main": [
[
{
"node": "7bebcb2d-1642-48ce-a511-bb0f561ca5cf",
"type": "main",
"index": 0
}
]
]
},
"81a1e39c-c7ea-4635-84fc-a8ae05cfd8f3": {
"main": [
[
{
"node": "61b92eb8-1bf8-4e57-9e07-1a39e457ecfb",
"type": "main",
"index": 0
}
]
]
},
"52d1ffef-11e8-4635-bbb8-05e915034379": {
"main": [
[
{
"node": "8617c530-382b-402b-9c0b-aeb4df2bb920",
"type": "main",
"index": 0
},
{
"node": "0f226cfe-eb31-469a-8e7c-a21192adbd4c",
"type": "main",
"index": 0
}
]
]
},
"ee61bc59-164b-45b4-8b49-57cdba7d298b": {
"main": [
[
{
"node": "52d1ffef-11e8-4635-bbb8-05e915034379",
"type": "main",
"index": 0
}
]
]
},
"7bebcb2d-1642-48ce-a511-bb0f561ca5cf": {
"main": [
[
{
"node": "ee61bc59-164b-45b4-8b49-57cdba7d298b",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 영업, 마케팅
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
자동화 블로그 작성 및 소셜 미디어 프로모션 에이전트
GPT-4, Perplexity 및 WordPress를 사용한 SEO 블로그 생성 + 소셜 미디어 자동화
Set
Code
Gmail
+
Set
Code
Gmail
79 노드LukaszB
디자인
Dropcontact를 사용하여 매시간 최대 1500개의 이메일을 풍부화
Dropcontact를 통해 매시간 최대 1500개의 이메일을 풍부화
Code
Wait
Slack
+
Code
Wait
Slack
12 노드victor de coster
영업
Agile CRM의 INSEE 데이터 풍부화
Agile CRM에 대해 INSEE 회사 데이터 풍부화(프랑스 회사 제한)
Set
Code
Merge
+
Set
Code
Merge
14 노드Johan Denoyer
영업
[템플릿] AI 반려동물 가게 v8
🐶 AI 펫 샵 어시스턴트 - GPT-4o, Google 캘린더 및 WhatsApp/Instagram/Facebook 통합
If
N8n
Set
+
If
N8n
Set
244 노드Amanda Benks
영업
MailChimp자동화
基于AI의餐厅通讯생성기,통합Mailchimp및Telegram审批
If
Set
Code
+
If
Set
Code
43 노드Femi Ad
인공지능
소셜 미디어 AI 에이전트 - Telegram
AI 기반 소셜 미디어 증폭기
Code
Wait
Merge
+
Code
Wait
Merge
26 노드Mudit Juneja
인공지능