Merge pull request 'dev' (#33) from dev into dev-deploy

Reviewed-on: #33
This commit is contained in:
ysCha 2025-05-29 16:11:39 +09:00
commit a5f174e5da

View File

@ -336,16 +336,19 @@ BoardResponse boardResponse = null;
/* [1]. QSP API (url + fileNo) Setting */
String url = null;
if("NO".equals(zipYn)) {
url = QSP_API_URL + "/api/file/downloadFile2";
url = QSP_API_URL + "/api/file/downloadFile2?encodeFileNo=" + keyNo;
}else{
url = QSP_API_URL + "/api/file/downloadFile";
if ("Y".equals(zipYn)) {
url += "?noticeNo=" + keyNo;
} else {
url += "?fileNo=" + keyNo;
}
}
if ("Y".equals(zipYn)) {
url += "?noticeNo=" + keyNo;
} else {
url += "?fileNo=" + keyNo;
}
/* [2]. QSP API CALL -> Response */
Map<String, String> result = new HashMap<String, String>();