mpesadaraja 0.1.5 copy "mpesadaraja: ^0.1.5" to clipboard
mpesadaraja: ^0.1.5 copied to clipboard

M-pesa daraja api library for flutter and dart. M-Pesa is a mobile phone-based money transfer.

mpesa-daraja-plugin-flutter-dart #

dart wrapper for mpesa daraja api by safaricom. M-Pesa is a mobile phone-based money transfer, financing and microfinancing service, launched in 2007 by Vodafone for Safaricom and Vodacom the largest mobile network operators in Kenya and Tanzania.

Features #

  1. [+]Lipa na mpesa
  2. [inprogress] C2B
  3. [inprogress] B2B
  4. [inprogress] C2B
  5. [inprogress] B2C
  6. [inprogress] TRANSACTION STATUS
  7. [inprogress] ACCOUNT BALANCE
  8. [inprogress] REVERSAL

Getting started #

You Will need a few things from Safaricom before development.

  1. Consumer Key
  2. Consumer Secret
  3. Test Credentials for Development/Sanbox environment
  • Login or Register as a Safaricom developer here if you haven't.
  • Add a new App here
  • You will be issued with a Consumer Key and Consumer Secret. You will use these to initiate an Mpesa Instance.
  • Obtain Test Credentials here.
  • The Test Credentials Obtained Are only valid in Sandbox/Development environment. Take note of them.
  • To run in Production Environment you will need real Credentials.
  • To go Live and be issued with real credentials,please refer to this guide
  1. Add dependancy in pubspec.yaml
dependencies:
  mpesadaraja: ^0.1.5

Lipa Na MPesa Online #

LIPA NA M-PESA ONLINE also known as M-PESA express (STK Push) is a Merchant/Business initiated C2B (Customer to Business) Payment. This process it takes as described in the detailed sequence diagram below is:

Once you, our merchant integrates to the API, you will be able to send a payment prompt on the customers phone (Popularly known as STK Push Prompt) to your customer's M-PESA registered phone number requesting them to enter their M-PESA pin to authorize and complete a payment.

  1. create MpesaDaraja object and pass the following parameters:
 MpesaDaraja stkpush = MpesaDaraja(
   consumerKey:<>
   consumerSecret:<>
   passKey:<>
 )

or make it a final as shown below:

  final  stkpush = MpesaDaraja(
    consumerKey:<>
    consumerSecret:<>
    passKey:<>
  )

  1. cosumerKey:
  2. consumerSecret
  3. passKey
  • The keys are generated when you create an app at [Daraja 2.0] website Click here to create your keys

  • The keys are a secret, so be sure to use them as environment variables in production code

  1. Use the object created to call lipaNaMpesaStk() function to initialize the process
    • if the function is inside anaother be sure to use a Future with await when caloing the function
    • pass the required parameters in the function as shwon below
 await stk.lipaNaMpesaStk(
    <BusinnessShortCode>,
    <Amount>,
    <PartyA>,
    <PartB>,
    <PhoneNumber>,
    <CallBackUrl>,
    <AccountReference>,
    <TransactionDescription>,
  );

Parameters passed in lipaNaMpesaStk() function

  1. BusinessShortCode: This is organizations shortcode (Paybill or Buygoods - A 5 to 7 digit account number) used to identify an organization and receive the transaction.

  2. Amount: This is the Amount transacted normaly a numeric value. Money that customer pays to the Shorcode. Only whole numbers are supported.

  3. PartyA: The phone number sending money. The parameter expected is a Valid Safaricom Mobile Number that is M-Pesa registered in the format 2547XXXXXXXX

  4. PartyB: The organization receiving the funds. The parameter expected is a 5 to 7 digit as defined on the Shortcode description above. This can be the same as BusinessShortCode value above.

  5. PhoneNUmber: The Mobile Number to receive the STK Pin Prompt. This number can be the same as PartyA value above.

  6. CallBackUrl: A CallBack URL is a valid secure URL that is used to receive notifications from M-Pesa API. It is the endpoint to which the results will be sent by M-Pesa A

  7. AccountReference: Account Reference: This is an Alpha-Numeric parameter that is defined by your system as an Identifier of the transaction for CustomerPayBillOnline transaction type. Along with the business name, this value is also displayed to the customer in the STK Pin Prompt message. Maximum of 12 characters.

  8. TransactionDescription: This is any additional information/comment that can be sent along with the request from your system. Maximum of 13 Characters.

N/B: Do not use my demo keys below since they will not work.

Future<void> main() async {
  final stk = MpesaDaraja(
    consumerKey: 'Dm4oJgziMyOT7WTmJzQfEZS6jjzg1Fkd',
    consumerSecret: 'RGRvsUGkO4jc3NuW',
    passKey: 'bfb279f9aa9bdbcf158e97dd71a467cd2e0c893059b10f78e6b72ada1ed2c919',
  );

  await stk.lipaNaMpesaStk(
    "174379",
    1,
    "254798071520",
    "174379",
    "254798071520",
    "https://mydomain.com/path",
    "accountReference",
    "transactionDesc",
  );
}

Contributers #

  1. Anselmo.Jr
  2. Joel
  3. sav4ner

Demo #

  • coming soon ....
6
likes
120
pub points
59%
popularity

Publisher

unverified uploader

M-pesa daraja api library for flutter and dart. M-Pesa is a mobile phone-based money transfer.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, http

More

Packages that depend on mpesadaraja