File tree Expand file tree Collapse file tree
src/main/java/com/nitrogen/global/auth/service/kakao_apple Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717import lombok .RequiredArgsConstructor ;
1818import lombok .extern .slf4j .Slf4j ;
1919import org .springframework .beans .factory .annotation .Value ;
20- import org .springframework .core .ParameterizedTypeReference ;
2120import org .springframework .http .*;
22- import org .springframework .security .core .Authentication ;
2321import org .springframework .stereotype .Service ;
2422import org .springframework .transaction .annotation .Transactional ;
2523import org .springframework .util .LinkedMultiValueMap ;
2624import org .springframework .util .MultiValueMap ;
2725import org .springframework .web .client .RestTemplate ;
28- import com .fasterxml .jackson .databind .ObjectMapper ;
2926
3027import java .math .BigInteger ;
3128import java .security .*;
@@ -211,6 +208,8 @@ private AppleTokenResponseDTO getAppleToken(String code) {
211208 params .add ("client_secret" , makeClientSecretToken ());
212209 params .add ("code" , code );
213210
211+ log .info ("애플 서버로 쏘는 client_id: {}" , appleClientId );
212+
214213 HttpEntity <MultiValueMap <String , String >> request = new HttpEntity <>(params , headers );
215214
216215 try {
You can’t perform that action at this time.
0 commit comments