IT관련

Google Search Console API과 Google Indexing API의 사용버젼 정리

파란하늘999 2025. 9. 19. 17:42

Google Search Console API

현재 버전: v1

# Search Console API 호출 예시
from googleapiclient.discovery import build
service = build('searchconsole', 'v1', credentials=credentials)

 

주요 기능:

  • 검색 분석 데이터 조회
  • 사이트맵 관리
  • URL 검사
  • 사이트 검증 상태 확인

Google Indexing API

현재 버전: v3

  • Indexing API는 v3을 사용하며, 사이트 소유자가 구글에 직접 페이지 추가/제거를 알릴 수 있게 해줍니다 GoogleGoogle
  • 2024년 10월 31일에 마지막으로 업데이트되었습니다 Indexing API | Google for Developers
# Indexing API 호출 예시
from googleapiclient.discovery import build
service = build('indexing', 'v3', credentials=credentials)

 

중요한 제한사항:

정리

  • Search Console API → v1 사용
  • Indexing API → v3 사용
반응형