[hotfix] token claim fixed.

This commit is contained in:
dalbodeule
2025-06-04 16:18:02 +09:00
parent b2f449bf65
commit 90230c4691
3 changed files with 10 additions and 7 deletions

View File

@@ -181,7 +181,7 @@ val server = embeddedServer(Netty, port = 8080, ) {
clientSecret = dotenv["NAVER_CLIENT_SECRET"]
)
val response = applicationHttpClient.post("https://chzzk.naver.com/auth/v1/token") {
val response = applicationHttpClient.post("https://openapi.chzzk.naver.com/auth/v1/token") {
contentType(ContentType.Application.Json)
setBody(tokenRequest)
}