// 현금영수증 보기 URL private void btnGetPopUpURL_Click(object sender, EventArgs e) { try { string url = cashbillService.GetPopUpURL(txtCorpNum.Text, txtMgtKey.Text, txtUserId.Text); MessageBox.Show(url); } catch (PopbillException ex) { MessageBox.Show(ex.code.ToString() + " | " + ex.Message); } }
/* * 현금영수증 1건의 상세 정보 페이지의 URL을 반환합니다. * - 반환되는 URL은 보안 정책상 30초 동안 유효하며, 시간을 초과한 후에는 해당 URL을 통한 페이지 접근이 불가합니다. * - https://docs.popbill.com/cashbill/dotnetcore/api#GetPopUpURL */ public IActionResult GetPopUpURL() { // 현금영수증 문서번호 string mgtKey = "20220527-003"; try { var result = _cashbillService.GetPopUpURL(corpNum, mgtKey, userID); return(View("Result", result)); } catch (PopbillException pe) { return(View("Exception", pe)); } }