Beispiel #1
0
 /*
  * 연동회원 포인트 결제내역 확인을 위한 페이지의 팝업 URL을 반환합니다.
  * - 반환되는 URL은 보안 정책상 30초 동안 유효하며, 시간을 초과한 후에는 해당 URL을 통한 페이지 접근이 불가합니다.
  * - https://docs.popbill.com/htcashbill/dotnetcore/api#GetPaymentURL
  */
 public IActionResult GetPaymentURL()
 {
     try
     {
         var result = _htCashbillService.GetPaymentURL(corpNum, userID);
         return(View("Result", result));
     }
     catch (PopbillException pe)
     {
         return(View("Exception", pe));
     }
 }