Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
wellbeing-dough committed Oct 16, 2023
2 parents 54246d0 + 1e5d453 commit 68c91f8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ public Map<String, String> getUserInfo(String accessToken) {

Map<String, String> result = new HashMap<>();
result.put("id", naverUserInfo.getId().toString());
result.put("nickname", naverUserInfo.getNickName());
result.put("profile_image", naverUserInfo.getProfileImage());
// result.put("nickname", naverUserInfo.getNickName());
// result.put("profile_image", naverUserInfo.getProfileImage());

return result;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ public class NaverUserInfo {

private NaverUserProperties response;

public String getNickName() {
return response.getNickname();
}

public String getProfileImage() {
return response.getProfile_image();
}
// public String getNickName() {
// return response.getNickname();
// }
//
// public String getProfileImage() {
// return response.getProfile_image();
// }

public String getId() {
return response.getId();
Expand All @@ -25,7 +25,7 @@ public String getId() {
@Data
class NaverUserProperties {
private String id;
private String nickname;
private String profile_image;
// private String nickname;
// private String profile_image;

}

0 comments on commit 68c91f8

Please sign in to comment.