<html>
<head>
<script src="https://static.portone.cloud/portone.js"></script>
<script>
const portone = new window.PortOne({
portOneKey : 'pptafmcddmszvgXl',
jwtToken : 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9....MiwiZXhwIjoxNjczMzM5MDMy'
})
var data = {
merchant_details: {
name:"p shop",
logo:"images/v184_135.png",
back_url:"https://demo.portone.cloud/checkout",
promo_code:"p-shop350",
promo_discount:0.0,
shipping_charges:0.0
},
merchant_order_id:"MERCHANT1617366877238",
signature_hash:"10b664f803035a2146b26949041c2ce8c8693512e4b85159d3c43b001a714af0",
amount:4000,
currency:"VND",
environment:"sandbox",
description:"Product description"
country_code:"VN"
expiry_hours:24,
is_checkout_embed:true,
show_back_button:false,
show_shipping_details:false,
default_guest_checkout:true,
show_items:false,
success_url:"http://www.youdomain.me/result/success",
failure_url:"http://www.youdomain.me/result/failure"
};
function call_PortOne_payment() {
portone.checkoutService.checkout(data);
}
</script>
</head>
<body>
<button onclick="call_PortOne_payment();">결제하기</button>
</body>
</html>