Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
app.get('/simple_checkout', function (req, res) {
// initialize snap client object
let snap = new midtransClient.Snap({
isProduction : false,
serverKey : 'SB-Mid-server-GwUP_WGbJPXsDzsNEBRs8IYA',
clientKey : 'SB-Mid-client-61XuGAwQ8Bj8LxSS'
});
let parameter = {
"transaction_details": {
"order_id": "order-id-node-"+Math.round((new Date()).getTime() / 1000),
"gross_amount": 200000
}, "credit_card":{
"secure" : true
}
};
// create snap transaction token
snap.createTransactionToken(parameter)
.then((transactionToken)=>{
// pass transaction token to frontend