/* * 팝빌에 등록된 인증서로 홈택스 로그인 가능 여부를 확인합니다. * - https://docs.popbill.com/htcashbill/dotnetcore/api#CheckCertValidation */ public IActionResult CheckCertValidation() { try { var response = _htCashbillService.CheckCertValidation(corpNum); return(View("Response", response)); } catch (PopbillException pe) { return(View("Exception", pe)); } }