// 세션 오픈 실패. 세션이 삭제된 경우,
UserManagement.getInstance.requestMe(new MeResponseCallback() {
// 세션 오픈 실패. 세션이 삭제된 경우,
@Override
public void onSessionClosed(ErrorResult errorResult) {
Log.e("SessionCallback :: ", "onSessionClosed : " + errorResult.getErrorMessage());
}
//회원이 아닌 경우
@Override
public void onNotSignedUp() {
Log.e("SessionCallback :: ", "onNotSignedUp");
}
//사용자정보 요청에 성공한 경우,
@Override
public void onSuccess(UserProfile userProfile) {
Log.e("SessionCallback :: ", "onSuccess");
String nickname = userProfile.getNickname();
String email = userProfile.getEmail();
String profileImagePath = userProfile.getProfileImagePath();
String thumnailPath = userProfile.getThumbnailImagePath();
String UUID = userProfile.getUUID();
long id = userProfile.getId();
Log.e("Profile : ", nickname + "");
Log.e("Profile : ", email + "");
Log.e("Profile : ", profileImagePath + "");
Log.e("Profile : ", thumnailPath + "");
Log.e("Profile : ", UUID + "");
Log.e("Profile : ", id + "");
}
//사용자 정보 요청 실패
@Override
public void onFailure(ErrorResult errorResult) {
Log.e("SessionCallback :: ", "onFailure : " + errorResult.getErrorMessage());
}
});
}
}
getInstance 가 빨간줄이 뜨는 이유가 뭘까요?