Skip to content

Commit

Permalink
fix: AccessToken에 Prefix 추가 (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
kdkdhoho authored Feb 13, 2024
1 parent 6f3c56a commit 441dbdf
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ public KakaoMember fetchMember(String accessToken) {
}

public Long logout(String oauthAccessToken) {
KakaoLogoutResponse response = apiClient.logout(oauthAccessToken);
String accessToken = "Bearer " + oauthAccessToken;
KakaoLogoutResponse response = apiClient.logout(accessToken);
return response.id();
}
}

0 comments on commit 441dbdf

Please sign in to comment.