Skip to content

Commit 983ab18

Browse files
committedMar 19, 2025
feat : (#35) modify token related logic to CreateGithubTokenService
1 parent f71b2e3 commit 983ab18

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎src/main/kotlin/entry/dsm/gitauth/equusgithubauth/domain/auth/command/service/CreateGithubTokenService.kt

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,14 @@ class CreateGithubTokenService(
1111
private val githubProperties: GithubProperties,
1212
) {
1313
companion object {
14-
private const val ACCESS_TOKEN_URL = "https://github.com/login/oauth/access_token"
1514
private val restTemplate = RestTemplate()
1615
}
1716

1817
fun execute(
1918
code: String
2019
): TokenResponse {
2120
return restTemplate.postForObject(
22-
ACCESS_TOKEN_URL,
21+
githubProperties.tokenUri,
2322
GithubAccessTokenRequest(
2423
clientId = githubProperties.clientId,
2524
clientSecret = githubProperties.clientSecret,

0 commit comments

Comments
 (0)