Skip to content

Commit 2f19a88

Browse files
authored
Merge pull request #166 from 1223v/login
Fix: 애플로그인 Attributes 수정
2 parents 7ebafb4 + 8e73f38 commit 2f19a88

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/com/readyvery/readyverydemo/security/oauth2/OAuthAttributes.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,12 @@ public OAuthAttributes(String nameAttributeKey, OAuth2UserInfo oauth2UserInfo) {
3737
*/
3838
public static OAuthAttributes of(SocialType socialType,
3939
String userNameAttributeName, Map<String, Object> attributes) {
40-
40+
System.out.println("attributes = " + attributes);
4141
if (socialType == SocialType.KAKAO) {
4242
return ofKakao(userNameAttributeName, attributes);
4343
}
4444
if (socialType == SocialType.APPLE) {
45+
4546
return ofApple(userNameAttributeName, attributes);
4647
}
4748
return ofGoogle(userNameAttributeName, attributes);

0 commit comments

Comments
 (0)