We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f71b2e3 commit 983ab18Copy full SHA for 983ab18
src/main/kotlin/entry/dsm/gitauth/equusgithubauth/domain/auth/command/service/CreateGithubTokenService.kt
@@ -11,15 +11,14 @@ class CreateGithubTokenService(
11
private val githubProperties: GithubProperties,
12
) {
13
companion object {
14
- private const val ACCESS_TOKEN_URL = "https://github.com/login/oauth/access_token"
15
private val restTemplate = RestTemplate()
16
}
17
18
fun execute(
19
code: String
20
): TokenResponse {
21
return restTemplate.postForObject(
22
- ACCESS_TOKEN_URL,
+ githubProperties.tokenUri,
23
GithubAccessTokenRequest(
24
clientId = githubProperties.clientId,
25
clientSecret = githubProperties.clientSecret,
0 commit comments