File manager - Edit - /home/asiatechinc/public_html/asiatechinc-websites/dhyeyaprakashan.com/blinkcheckout-samplephp/config.php
Back
<?php require_once "PaytmChecksum.php"; //define('PAYTM_ENVIRONMENT', 'https://securegw-stage.paytm.in'); define('PAYTM_ENVIRONMENT', 'https://securegw.paytm.in');// for production /** * Generate checksum by parameters we have * Find your Merchant ID, Merchant Key and Website in your Paytm Dashboard at https://dashboard.paytm.com/next/apikeys */ define('PAYTM_MID', 'QGyaio39945967914738'); define('PAYTM_MERCHANT_KEY', '7M2XV%h#zqy7basS'); //define('PAYTM_WEBSITE', 'WEBSTAGING'); define('PAYTM_WEBSITE', 'DEFAULT'); // for production function getTransactionToken(){ $generatedOrderID = "PYTM_BLINK_".time(); $amount = "1.00"; $callbackUrl = getSiteURL().'callback.php'; $paytmParams["body"] = array( "requestType" => "Payment", "mid" => PAYTM_MID, "websiteName" => PAYTM_WEBSITE, "orderId" => $generatedOrderID, "callbackUrl" => $callbackUrl, "txnAmount" => array( "value" => $amount, "currency" => "INR", ), "userInfo" => array( "custId" => "CUST_".time(), ), ); $generateSignature = PaytmChecksum::generateSignature(json_encode($paytmParams['body'], JSON_UNESCAPED_SLASHES), PAYTM_MERCHANT_KEY); $paytmParams["head"] = array( "signature" => $generateSignature ); $url = PAYTM_ENVIRONMENT."/theia/api/v1/initiateTransaction?mid=". PAYTM_MID ."&orderId=". $generatedOrderID; $getcURLResponse = getcURLRequest($url, $paytmParams); if(!empty($getcURLResponse['body']['resultInfo']['resultStatus']) && $getcURLResponse['body']['resultInfo']['resultStatus'] == 'S'){ $result = array('success' => true, 'orderId' => $generatedOrderID, 'txnToken' => $getcURLResponse['body']['txnToken'], 'amount' => $amount, 'message' => $getcURLResponse['body']['resultInfo']['resultMsg']); }else{ $result = array('success' => false, 'orderId' => $generatedOrderID, 'txnToken' => '', 'amount' => $amount, 'message' => $getcURLResponse['body']['resultInfo']['resultMsg']); } return $result; } function getcURLRequest($url , $postData = array(), $headers = array("Content-Type: application/json")){ $post_data_string = json_encode($postData, JSON_UNESCAPED_SLASHES); $ch = curl_init($url); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data_string); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json")); $response = curl_exec($ch); return json_decode($response,true); } function getSiteURL(){ $actual_link = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; return str_replace('config.php', '', $actual_link); } ?>
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings