데모 코드 : config.php

config.php
<?php
global $config;
$config = array (	
		//APPID that you can find at dashboard
		'appid' => "",
	 
		//WaraPay Publick Key that you can find at dashboard
		'warapay_public_key' => "",
 
		//Your Private Key that you can make new at dashboard
		'app_private_key' => "",
 
		// No need to modify it
		'charset' => "UTF-8",

		// Warapay API Gateway URL
		'gatewayUrl' => "https://wara-kr.miguyouxi.com/api/gateway.html", 
		
		// Query order Gateway URL
		'queryUrl' => "https://wara-kr.miguyouxi.com/api/query.html", 

);
?>

Last updated