From 3a3eeef87ae4085466fcc35dca6e8c9185d8c3b5 Mon Sep 17 00:00:00 2001 From: "hehihoho3@gmail.com" Date: Wed, 1 Jul 2026 11:46:35 +0900 Subject: [PATCH] =?UTF-8?q?feat(comment-cards):=20=EB=8C=93=EA=B8=80=20?= =?UTF-8?q?=EC=88=98=EC=A7=91=20=EC=83=81=ED=95=9C=20500=E2=86=921,000?= =?UTF-8?q?=EA=B0=9C=EB=A1=9C=20=EC=83=81=ED=96=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit MAX_PAGES 5→10 (페이지당 100개). commentThreads는 호출당 1유닛이라 1,000개=10유닛으로 쿼터 부담 미미. Co-Authored-By: Claude Opus 4.8 (1M context) --- .../java/com/hlab/yanalyst/service/YoutubeCommentService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/hlab/yanalyst/service/YoutubeCommentService.java b/src/main/java/com/hlab/yanalyst/service/YoutubeCommentService.java index 3578e23..3a27318 100644 --- a/src/main/java/com/hlab/yanalyst/service/YoutubeCommentService.java +++ b/src/main/java/com/hlab/yanalyst/service/YoutubeCommentService.java @@ -28,8 +28,8 @@ public class YoutubeCommentService { @Value("${youtube.api.key}") private String youtubeApiKey; - /** 응답 크기/쿼터 보호용 최대 페이지 수 (페이지당 최대 100개). */ - private static final int MAX_PAGES = 5; + /** 응답 크기/쿼터 보호용 최대 페이지 수 (페이지당 최대 100개 → 최대 1,000개). */ + private static final int MAX_PAGES = 10; private static final ObjectMapper MAPPER = new ObjectMapper();