2017 © Pedro Peláez
 

library knet-payment-php

Php SDK for Knet Payment Gateway

image

izal/knet-payment-php

Php SDK for Knet Payment Gateway

  • Tuesday, June 5, 2018
  • by afzal
  • Repository
  • 1 Watchers
  • 2 Stars
  • 58 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 4 Versions
  • 142 % Grown

The README.md

Knet Payment Php SDK

Packagist License Build Status, (*1)

This is a package to integrate KNET Payment Gateway in Php., (*2)

Documentation

Installation

Require this package with composer:, (*3)

composer require izal/knet-payment-php

Usage:

Initialise the Payment Process

$knetGateway = new KnetBilling([
                'alias'        => 'YOUR_KNET_ALIAS',
                'resourcePath' => '/home/my_web_app_folder/' //Absolute Path to where the resource.cgn file is located
            ]);

configure the URL


$knetGateway->setResponseURL('http://mywebapp.com/payment/response.php'); $knetGateway->setErrorURL('http://mywebapp.com/payment/error.php); $knetGateway->setAmt(100); $knetGateway->setTrackId('123456'); // unique string // Refer the KnetBilling class for other configurations that can be set like currency, language etc

Now to accept payments from the customer, first step is to Request the KNET gateway for the payment URL, by calling requestPayment method on the KnetBilling Class, we have completed our initial step to collect the payment., (*4)

$knetGateway->requestPayment();

Second step is to get the payment URL. and to get the payment url just call the method getPaymentURl, (*5)

/** 
* Get the URL for the Payment and assign it to a variable. this is the URL we will use to redirect the
* customer to payment gateway 
*/

$paymentURL = $knetGateway->getPaymentURL();

Note: If the Payment URL returns null, most probably you messed up with configuration, or resource path. Check the example in the below section how to ideally request for the payment, which helps to debug for the errors

Third step is to Redirect the user to the Payment URL, (*6)

// Redirect the USER to the Payment URL
header('Location: '.$paymentURL);

NOTE: Behind the scenes, Customer will be forwarded to the Knet Payment Page, If the payment process was success, Then he will be redirected to the Response URL we set in setResponseURL method. i.e http://mywebapp.com/payment/response.php

Fourth step is to get the response returned from the Knet Gateway and redirect the user to success or error page in your application., (*7)


// handle gateway response in http://mywebapp.com/payment/response.php $paymentID = $_POST['paymentid']; $result = $_POST['result']; // if the transaction is success, string "CAPTURED" will be return $tranid = $_POST['tranid']; // transaction id $trackid = $_POST['trackid']; // build URL $urlParams = "/?paymentID=" . $paymentID . "&transactionID=" . $transactionID . "&trackID=" . $trackID; if ($result === "CAPTURED") { $redirectURL = 'http://mywebapp.com/payment/success.php'; } else { $redirectURL = 'http://mywebapp.com/payment/error.php'; } return "REDIRECT=" . $redirectURL . $urlParams; /** Above line is very important * KNET expects the return value from the page or method to be starting with * REDIRECT=http://mywebapp.com/payment/success/?paymentID.. etc. */

This is it. KNET will redirect the USER to the success page in a GET request. i.e to, (*8)

http://mywebapp.com/payment/success.php

Example


$responseURL = 'http://mywebapp.com/payment/response.php'; $successURL = 'http://mywebapp.com/payment/success.php'; $errorURL = 'http://mywebapp.com/payment/error.php'; $knetAlias = 'TEST_ALIAS'; $resourcePath = '/home/mywebapp/'; $amount = 150; $trackID = 'UNIQUETRACKID'; try { $knetGateway = new KnetBilling([ 'alias' => $knetAlias, 'resourcePath' => $resourcePath ]); $knetGateway->setResponseURL($successURL); $knetGateway->setErrorURL($errorURL); $knetGateway->setAmt($amount); $knetGateway->setTrackId($trackID); $knetGateway->requestPayment(); $paymentURL = $knetGateway->getPaymentURL(); // helper function to redirect return header('Location: '.$paymentURL); } catch (\Exception $e) { // to debug error message // die(var_dump($e->getMessage())); return header('Location: '.$errorUrl); }

The Versions

05/06 2018

dev-master

9999999-dev

Php SDK for Knet Payment Gateway

  Sources   Download

MIT

The Requires

 

The Development Requires

by Afzal Abbas

knet knet payment knet client knet sdk knet php

05/06 2018

2.0.1

2.0.1.0

Php SDK for Knet Payment Gateway

  Sources   Download

MIT

The Requires

 

The Development Requires

by Afzal Abbas

knet knet payment knet client knet sdk knet php

12/09 2017

2.0.0

2.0.0.0

Php SDK for Knet Payment Gateway

  Sources   Download

MIT

The Requires

 

The Development Requires

by Afzal Abbas

knet knet payment knet client knet sdk knet php

11/09 2017

1.0.0

1.0.0.0

Php SDK for Knet Payment Gateway

  Sources   Download

MIT

The Requires

 

The Development Requires

by Afzal Abbas

knet knet payment knet client knet sdk knet php