Skip to content
This repository was archived by the owner on Jul 7, 2025. It is now read-only.

Commit 4bd4c97

Browse files
committed
ASAP-445 변수명 수정 및 URI 생성 로직 수정: baseUrlbaseUri로 변경하고 fromHttpUrlfromPath로 교체하여 URI 생성 방식 개선
1 parent 51b6b1a commit 4bd4c97

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Infrastructure-Module/Client/src/main/kotlin/com/asap/client/oauth/platform/NaverOAuthRetrieveHandler.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ class NaverOAuthRetrieveHandler(
7979
val clientSecret: String,
8080
val code: String,
8181
) {
82-
fun toUriComponents(baseUrl: String): String =
82+
fun toUriComponents(baseUri: String): String =
8383
UriComponentsBuilder
84-
.fromHttpUrl(baseUrl)
84+
.fromPath(baseUri)
8585
.queryParam("grant_type", grantType)
8686
.queryParam("client_id", clientId)
8787
.queryParam("client_secret", clientSecret)

0 commit comments

Comments
 (0)