Skip to content

Commit

Permalink
[Fix] Refresh Token Fix (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajou4095 authored Mar 6, 2024
1 parent 7a305f7 commit 1c0cfc2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class TokenApi @Inject constructor(
refreshToken: String
): Result<GetAccessTokenRes> {
return noAuthClient.post("$baseUrl/api/v1/token/reissue") {
header("Token-Refresh", refreshToken)
header("Token-Refresh", "Bearer $refreshToken")
}.convert(errorMessageMapper::map)
}
}

0 comments on commit 1c0cfc2

Please sign in to comment.