Skip to content

Commit

Permalink
Update AwsResourceService.java
Browse files Browse the repository at this point in the history
  • Loading branch information
gytjd committed Nov 18, 2024
1 parent 8b1de01 commit cea2041
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,12 @@ private MemberCredentialDTO getMemberCredentials(String email, String companyNam
new ParameterizedTypeReference<SingleResult<MemberCredentialDTO>>() {}
);

System.out.println(response.getBody().getData());

// 응답 상태와 데이터 유효성 확인
if (response.getStatusCode().is2xxSuccessful() &&
response.getBody() != null &&
response.getBody().isSuccess()) {

// 성공적으로 데이터를 추출하여 반환
return response.getBody().getData();
} else {
Expand Down

0 comments on commit cea2041

Please sign in to comment.