게시글
질문&답변
강의 자료
최영준 안녕하세요. 말씀 주신 부분 확인했습니다. 강의 내용을 추가하거나 업데이트하는 과정에서 강의 자료 PDF가 실제 강의 순서와 일치하지 않은 부분이 일부 있을 수 있는데, 혹시 말씀하신 불편하신 점을 느낀 파트(예: ○○파트, ○○챕터)이 있으시면 알려주시면 확인에 더 도움이 될 것 같습니다.불편을 드려 죄송합니다.
- 0
- 2
- 28
질문&답변
16강 워크플로우가 오류가 납니다.
안녕하세요. 전체적으로 도움이 필요하신거 같은데, 인프런 질문으로는 빠른 답변을 드리기 어려울 수 있어서 디스코드 채널에서 한번 문의를 다시 부탁드립니다. 실시간 소통을 어느정도 해보시면 좋을거 같아요.https://discord.gg/JrKKqThyG9
- 0
- 5
- 43
질문&답변
유스케이스 실습이 전혀 되지 않네요.
안녕하세요. 혹시 디스코드에서 이야기 나눠볼 수 있을까요? "팝콘" 아이디로 메시지 한번 남겨주세요. 따로 도움을 드리도록 해보겠습니다.https://discord.gg/JrKKqThyG9
- 0
- 3
- 44
질문&답변
구글 캘린더 연동 질문 있습니다
엇, 제가 답을 드리지 않았군요. 죄송합니다. n8n 클라우드는 기본적으로 "인증받은 앱"이라서 별도 client_id, client_secret 등을 기입하지 않아도 되는 겁니다! 따라서 잘못된 구조가 아닙니다!
- 0
- 2
- 50
질문&답변
Claude MCP connector 연결 오류 질문
https://wikidocs.net/291117위 링크 내용을 한번 참고해보시겠어요? 가이드 내용을 단계적으로 작성해보았습니다! 오류가 어떤 내용인지도 알려주시면 도움을 드릴 수 있을 거 같아요.
- 0
- 1
- 51
질문&답변
워크플로우 공유 요청
https://www.latpeed.com/products/7B7UY안녕하세요! 해당 워크플로우는 별도 유료 상품으로 판매중입니다!
- 0
- 2
- 43
질문&답변
구글 캘린더 연동 질문 있습니다
안녕하세요! "n8n 클라우드" 는 사진 처럼 입력란이 없는게 맞습니다! 바로 Sign In With Google. 하시면 됩니다
- 0
- 1
- 47
질문&답변
구글 드라이브 주소(워크플로우다운) 찻을수 없어요
안녕하세요 해당 링크로 들어가셔서 신청하시면 받으실 수 있습니다! 감사합니다.https://www.latpeed.com/products/c4Gtf
- 0
- 2
- 53
질문&답변
Google RSS 최신 뉴스 강의에서 뉴스가 하나만 가져와지네요
안녕하세요! 테스트는 한 개만 가져올 수 있습니다! 그래서 그 이상을 받으시려면 Trigger가 아닌 일반 RSS 노드로 하셔야 합니다.이제 워크플로우를 활성화Active를 해두시면 계속해서 새로운 뉴스가 올라올 때마다 받아오실거에요.
- 0
- 2
- 56
질문&답변
n8n 워크플로우 구축 관련 문의 (ArXiv RSS 피드 논문 요약 및 알림 자동화)
제가 논문쪽은 잘몰라서 대충 이런 느낌이실거 같은데, 한번 참고해봐주세요!강의해서 이야기한 Trigger, Task, Target 이 구조만 맞추면 얼추 할 수 만들어보실 수 있을것 같아요.아래는 급하게 만든거라 동작하진 않습니다. 구조화만 보시면 될거 같아여. (사진) 아래 내용을 복사한후 워크플로우에 붙여넣기 하시면 됩니다.{ "nodes": [ { "parameters": { "options": {} }, "id": "3", "name": "Summarize Articles", "type": "@n8n/n8n-nodes-langchain.agent", "typeVersion": 1, "position": [ 580, 300 ] }, { "parameters": { "channel": "#research-summaries", "text": "Here are today's ArXiv paper summaries:\n\n{{$node['Summarize Articles'].json['summary']}}", "otherOptions": {}, "attachments": [] }, "id": "4", "name": "Send to Slack", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [ 956, 200 ] }, { "parameters": { "fromEmail": "your_email@example.com", "toEmail": "your_email@example.com", "subject": "Daily ArXiv Paper Summaries", "text": "Here are today's ArXiv paper summaries:\n\n{{$node['Summarize Articles'].json['summary']}}", "options": {} }, "id": "5", "name": "Send Email", "type": "n8n-nodes-base.emailSend", "typeVersion": 1, "position": [ 956, 400 ] }, { "parameters": { "pollTimes": { "item": [ { "mode": "everyMinute" } ] }, "feedUrl": "https://export.arxiv.org/rss/cs.AI" }, "type": "n8n-nodes-base.rssFeedReadTrigger", "typeVersion": 1, "position": [ 140, 300 ], "id": "fa076ff6-698c-401b-8776-3b31f068f936", "name": "ArXiv RSS Trigger" }, { "parameters": { "jsCode": "const keywords = ['멀티모달 LLM', '비디오 VLM'];\nreturn items.filter(item => {\n const title = item.json.title.toLowerCase();\n const summary = item.json.contentSnippet.toLowerCase();\n return keywords.some(kw => title.includes(kw.toLowerCase()) || summary.includes(kw.toLowerCase()));\n});" }, "type": "n8n-nodes-base.code", "typeVersion": 2, "position": [ 360, 300 ], "id": "70626583-5ecf-4591-8d19-712f2e450a20", "name": "Filter Articles" }, { "parameters": { "options": {} }, "type": "@n8n/n8n-nodes-langchain.lmChatGoogleGemini", "typeVersion": 1, "position": [ 668, 520 ], "id": "70f89204-971b-4469-b9fc-49108f4b5a6d", "name": "Google Gemini Chat Model", "credentials": { "googlePalmApi": { "id": "JqXmXiviiykGaD8T", "name": "swspcompany" } } } ], "connections": { "Summarize Articles": { "main": [ [ { "node": "Send to Slack", "type": "main", "index": 0 }, { "node": "Send Email", "type": "main", "index": 0 } ] ] }, "ArXiv RSS Trigger": { "main": [ [ { "node": "Filter Articles", "type": "main", "index": 0 } ] ] }, "Filter Articles": { "main": [ [ { "node": "Summarize Articles", "type": "main", "index": 0 } ] ] }, "Google Gemini Chat Model": { "ai_languageModel": [ [ { "node": "Summarize Articles", "type": "ai_languageModel", "index": 0 } ] ] } }, "pinData": {}, "meta": { "instanceId": "a8fb7fd31983317952de5fe842ded2643867d47ad03573d086b1bc8ab17aa03b" } }
- 0
- 1
- 64