팝빌 알림톡 기능 추가

This commit is contained in:
chym1217
2025-09-04 12:32:31 +09:00
parent 37d0dcb48f
commit 66f6a75a10
99 changed files with 8876 additions and 260 deletions

View File

@ -0,0 +1,14 @@
<?php
include_once('../../common.php');
include_once('./_common.php');
include_once(G5_KAKAO5_PATH.'/kakao5.lib.php');
// 팝빌 정보 확인
$check_result = get_popbill_service_info();
if (isset($check_result['error'])) {
die(json_encode(array('error' => $check_result['error'])));
} else {
$charge_url = get_popbill_point_URL(); // 포인트 충전 팝업 URL
die(json_encode(array('balance' => $check_result['balance'], 'charge_url' => $charge_url)));
}