From 666115ae88be701e24d3d77f334f85312995dcae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=84=B1=EA=B2=BD?= Date: Wed, 13 May 2026 16:11:57 +0900 Subject: [PATCH] =?UTF-8?q?=EB=8F=99=EC=9D=98=20=ED=99=94=EB=A9=B4=20?= =?UTF-8?q?=ED=91=9C=EC=8B=9C=ED=95=98=EC=97=AC=20refresh=5Ftoken=20?= =?UTF-8?q?=EB=B0=9C=EA=B8=89=20=EB=B3=B4=EC=9E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/social/oauth/youtube.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/social/oauth/youtube.py b/app/social/oauth/youtube.py index e2b89e2..ac68a36 100644 --- a/app/social/oauth/youtube.py +++ b/app/social/oauth/youtube.py @@ -59,7 +59,7 @@ class YouTubeOAuthClient(BaseOAuthClient): "response_type": "code", "scope": " ".join(YOUTUBE_SCOPES), "access_type": "offline", # refresh_token 받기 위해 필요 - "prompt": "select_account", # 계정 선택만 표시 (동의 화면은 최초 1회만) + "prompt": "consent", # 항상 동의 화면 표시하여 refresh_token 발급 보장 "state": state, } url = f"{self.AUTHORIZATION_URL}?{urlencode(params)}"