sso update

This commit is contained in:
Rinjae
2025-11-27 17:20:40 +09:00
parent bb4fd9679b
commit 52b5067d9b
@@ -55,7 +55,19 @@ public class SsoController implements InterceptorSkipController {
ssoModule.goErrorPage(res, Integer.parseInt(retCode));
return null;
}
// 기본 정보
Properties info = ssoModule.getUserInfos(ssoId);
if (info != null) {
info.keySet().forEach( k -> {
log.debug("{} : {}", k, info.get(k));
});
} else {
log.debug("User info is null");
}
// 확장 정보
Properties extendedInfo = ssoModule.getUserExFields(ssoId);
if (extendedInfo != null) {
extendedInfo.keySet().forEach( k -> {