feat(comment-cards): 댓글 수집 상한 500→1,000개로 상향

MAX_PAGES 5→10 (페이지당 100개). commentThreads는 호출당 1유닛이라
1,000개=10유닛으로 쿼터 부담 미미.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
hehihoho3@gmail.com 2026-07-01 11:46:35 +09:00
parent ba3776eb7e
commit 3a3eeef87a

View File

@ -28,8 +28,8 @@ public class YoutubeCommentService {
@Value("${youtube.api.key}") @Value("${youtube.api.key}")
private String youtubeApiKey; private String youtubeApiKey;
/** 응답 크기/쿼터 보호용 최대 페이지 수 (페이지당 최대 100개). */ /** 응답 크기/쿼터 보호용 최대 페이지 수 (페이지당 최대 100개 → 최대 1,000개). */
private static final int MAX_PAGES = 5; private static final int MAX_PAGES = 10;
private static final ObjectMapper MAPPER = new ObjectMapper(); private static final ObjectMapper MAPPER = new ObjectMapper();