좋아요! 아래는 Make.com을 이용해서 Serper API로 뉴스 수집을 자동화하는 방법을 단계별로 상세히 설명한 내용입니다.
| 항목 | 설명 |
|---|---|
| ✅ Make.com 계정 | make.com에서 회원가입 |
| ✅ Google Sheet | 키워드 및 결과 저장용 구글 스프레드시트 |
| ✅ Serper API Key | https://serper.dev에서 API 발급 |
| ✅ Serper API 테스트 | Playground에서 테스트 가능 |
시트 구성 예:
[시트1] Keywords
A1: Keyword
A2: apple
A3: samsung
...
[시트2] NewsResults
A1: Title | B1: Link | C1: Snippet | D1: Keyword
액션: Get Range Values
설명: Keyword 시트에서 키워드 목록 불러오기
설정:
KeywordsA2:A (두 번째 줄부터 키워드 읽기)액션: Iterator
설명: 불러온 키워드들을 하나씩 반복하기
설정:
액션: Make a request
설정:
URL: https://google.serper.dev/news
Method: POST
Headers:
X-API-KEY: [당신의 Serper API 키]
Content-Type: application/json
Body type: Raw (JSON)
Request content:
{
"q": "{{2.value}}"
}
여기서 {{2.value}}는 Iterator에서 가져온 키워드입니다.
news 배열액션: Add a Row
설정:
Spreadsheet: 결과 저장 시트
Sheet name: NewsResults
Columns mapping:
{{3.title}}{{3.link}}{{3.snippet}}{{2.value}} (키워드)필요하다면, 시각적 흐름도나 샘플 JSON도 도와드릴 수 있습니다. 어떤 형식이 더 도움이 될까요?