api 샘플페이지 추가

This commit is contained in:
hehihoho3@gmail.com 2025-10-22 11:22:28 +09:00
parent e382a2a8b3
commit 410700b834
27 changed files with 4 additions and 27 deletions

View File

@ -24,8 +24,8 @@
//회원아이디, APIKEY - 보안을 위해 실제 서비스 시에는 이곳에 mberId와 apiKey 값을 적어서 사용해주세요
//실제서비스용
final String mberId = "dudgusw"; //문자온 로그인 아이디
final String apiKey = "3429312e6a2c732188d4cc7d15d8a1baa01d8d91"; //발급받은 api ke
// final String mberId = "dudgusw"; //문자온 로그인 아이디
// final String apiKey = "3429312e6a2c732188d4cc7d15d8a1baa01d8d91"; //발급받은 api ke
//테스트용
//String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
@ -44,8 +44,8 @@
Map<String, String> params = new HashMap<String, String>();
/******************** 인증정보 ********************/
params.put("mberId", mberId); //문자온 로그인 아이디
params.put("accessKey", apiKey); //APIKEY
params.put("mberId", request.getParameter("p_mberId")); //문자온 로그인 아이디
params.put("accessKey", request.getParameter("p_apiKey")); //APIKEY
/******************** 전송정보 ********************/
//(필수)

View File

@ -1,23 +0,0 @@
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<script type="text/javascript" src="./jquery-3.5.0.js"></script>
<div class="inner">
<div class="send_top">
<div class="mypage_content current" id="tab5_3">
<div class="heading">
<h2>REST API(샘플-문자온)</h2>
</div>
<div class="heading">
<!-- 메뉴별 샘플 이동 링크 -->
<h2><a href="./jsp_example_send_msg_form_r1.jsp">1.문자발송</a></h2>
<h2><a href="./jsp_example_send_msgs_form_r1.jsp">2.대량문자발송</a></h2>
<h2><a href="./jsp_example_hstry_form_r1.jsp">3.전체발송내역</a></h2>
<h2><a href="./jsp_example_hstry_detail_form_r1.jsp">4.상세발송내역</a></h2>
<h2><a href="./jsp_example_select_price_form_r1.jsp">5.발송가능건수</a></h2>
</div>
</div>
</div>
</div>