paynow 1.0.7 copy "paynow: ^1.0.7" to clipboard
paynow: ^1.0.7 copied to clipboard

outdated

Paynow Client helper package.


id: flutter_quickstart title: Flutter Guide sidebar_label: Dart #

Sign in to Paynow and get integration details #

Before you can start making requests to Paynow's API, you need to get an integration ID and integration Key from Paynow. Details about how you can retrieve the ID and key are explained in detail on this page

Prerequisites #

In order to make use of this project, the following prerequisites must be met for it to work.

  1. Latest Flutter SDK Version

Installation #

To use the Flutter Paynow SDK, you need to add the latest release as a dependency to your project by updating your pubspec.yaml.
The latest release will be on the pub.dev.

pubspec.yaml

  paynow: ^latest_version

Getting started #

Create an instance of Paynow associated with your integration ID and integration key as supplied by Paynow.

Import the paynow package #

    import 'package:paynow/paynow.dart';

Initialise Paynow #

    Paynow paynow = Paynow(integrationKey: "INTEGRATION_KEY", integrationId: "INTEGRATION_ID", returnUrl: "http://yourReturnUrl.com", resultUrl: "http://yourResultUrl.com");

Create Payment Instance #

Create a new payment using any of the createPayment(...) methods, ensuring you pass your own unique reference for that payment (e.g invoice id). If you also pass in the email address, Paynow will attempt to auto login the customer at the Paynow website using this email address if it is associated with a registered account.

    Payment payment = paynow.createPayment("Invoice 32", "client@email.com");

Add item(s) to cart #

    payment.add("Banana", 2.0);

Initiating a web based transaction #

A web based transaction is made over the web, via the Paynow website.

You can optionally set the result and return URLs.

  • Result URL is the URL on the merchant website where Paynow will post transaction results to.
  • Return URL is the URL where the customer will be redirected to after the transaction has been processed. If you do not specify a return URL, you will have to rely solely on polling status updates to determine if the transaction has been paid.
    paynow.setResultUrl("http://example.com/gateways/paynow/update");
    paynow.setReturnUrl("http://example.com/return?gateway=paynow&merchantReference=1234");
    InitResponse response  = await paynow.send(payment);

The InitResponse response from Paynow will contain various information including:

  • url to redirect your customer to complete payment.
  • poll URL to check if the transaction has been paid

Initiating a mobile based transaction #

A mobile transaction is a transaction made using mobile money e.g. using Ecocash

Note: Mobile based transactions currently only work for Ecocash with Econet numbers and OneMoney with Netone numbers

Create a new payment using the createPayment(...) method that requires a unique merchant reference and the email address of the user making the payment.

    InitResponse response = await paynow.sendMobile(payment, "0784442662", "ecocash"); // defaults to ecocash if method not specified

Check Response results #

The InitResponse response from Paynow will contain various information including:

  • url to redirect your customer to complete payment.
  • poll URL to check if the transaction has been paid
    // Display results
    print(response());

    // Print Instructions
    print(response.instructions);
    
    // For Web Checkout, you get your [redirect_url] to redirect your client to
    String redirectuUrl = response.redirectUrl

Poll the transaction to check for the payment status #

It is possible to check the status of a transaction i.e. if the payment has been paid. To do this, make sure after initiating the transaction, you take note of the poll URL in the response. With this URL, call the pollTransaction(...) method of the Paynow object you created as follows. Note that checking transaction status is the same for web and mobile based transasctions.

If the request was successful, you should consider saving the poll URL sent from Paynow in your database so that you can use it later to check if the transaction has been paid.

    InitResponse response = await paynow.send(payment);
    StatusResponse statusResponse = await paynow.checkTransactionStatus(response.pollUrl);

    if (statusResponse.paid){
        print("Client Paid");
    }else{
        print("Transaction was unsuccessful");
    }

Full usage example #

The following is a usage example for mobile based transactions. For a full usage example please check the example folder.

   import 'package:paynow/paynow.dart';
   
   main()async{
      Paynow paynow = Paynow(integrationId: '', integrationKey: '', resultUrl: '', returnUrl :'');
      Payment payment = paynow.createPayment('Invoice 32', 'user@email.com');
      
      // add something to cart
      payment.add('Banana', 10.0);
      
      // start web checkout
      InitResponse response = await payment.sendMobile(payment, '0784442662');
      
      //delay
      await Future.delayed(Duration(seconds: 3));
      
      // check transaction status
      StatusResponse status = await paynow.checkTransactionStatus(response.pollUrl);
      
      if (status.paid){
        print('Yes!!!!!');
      }else{
        print('You didn\'t pay');
      }
   }

A