SDK 로그인이 성공하면 KOUser의 id 프로퍼티가 nil이 될 수 있나요?

KOSessionTask.meTask {
if let error = $0.1 {
print(error.localizedDescription)
let alert = UIAlertController.errorAlert(TWWord.alert.title.common, “오류가 발생했습니다.”)
self.present(alert, animated: true, completion: nil)
return
}
if let user = $0.0 as? KOUser {
let query: [String : String] = [“social_type”:“kakao”,
“social_id”:“ka_(user.id!)”]
}
}

의 코드를 실행했을 때, error가 없이 KOUser를 부르는데 성공했다면, user.id가 nil을 반환할 수 있는지 궁금합니다.