Swiftpack.co - AlgyJr/MpesaSDK as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by AlgyJr.
AlgyJr/MpesaSDK v0.1.0
Swift SDK for the M-Pesa Vodacom Mozambique REST API
⭐️ 15
🕓 2 years ago
iOS macOS watchOS tvOS
.package(url: "https://github.com/AlgyJr/MpesaSDK.git", from: "v0.1.0")

Platform iOS | macOS | watchOS | tvOS GitHub build

M-Pesa SDK

Swift package for M-Pesa API (Mozambique)

Ready Methods/APIs

  • ☑ C2B
  • ☐ B2B
  • ☐ B2C
  • ☐ TRANSACTION STATUS
  • ☐ REVERSAL

Requisites

  • API Key
  • Public Key

These keys will be used to generate your access token.

PS: You can get these keys getting an account on the Vodacom Mozambique M-Pesa website

Usage

Add a Swift package to your project:

  1. on Xcode, go to File -> Add Packages...
  2. paste the package repository URL (https://github.com/AlgyJr/MpesaSDK) into Search Bar
  3. Next next next :) and enjoy

Supported versions:

  • iOS 10.0
  • macOS 10.12
  • watchOS 3.0
  • tvOS 10.0

Import in your [iOS/macOS/watchOS/tvOS] or plain Swift app.

import MpesaSDK

Create an M-pesa service

let config = MpesaConfig(apiAddress: apiAddress, apiKey: apiKey, publicKey: publicKey)
let service = MpesaRepository(config: config)

C2B API Call

Create a payment request
let paymentRequest = PaymentRequest(
  transactionReference: "transactionReference",
  customerMSISDN: "25884*******",
  amount: "amount",
  thirdPartyReference: "thirdPartyReference",
  serviceProviderCode: "serviceProviderCode"
)
Perform the network call
service.c2bPayment(paymentRequest: paymentRequest) { result in
  // TODO handle response
}
Handle the response
service.c2bPayment(paymentRequest: paymentRequest) { result in
    switch result {
        case .success(let paymentResponse):
            let responseCode = paymentResponse.responseCode
            print(responseCode)
            // Do something depending on the response code

            print(paymentResponse.responseDesc)
        case .failure(let error):
            // Do something depending on the error
            switch error {
                case MpesaError.invalidToken:
                    print(MpesaError.invalidToken.rawValue)
                    // OR your message
                    print("API Key or Public Key incorrect")
                case MpesaError.invalidURL:
                    print(MpesaError.invalidURL.rawValue)
                    // OR your message
                    print("Invalid URL")
                default:
                    print("Request failed with error: \(error.localizedDescription)")
            }
    }
}

Example/Screenshots :camera_flash:

Make Payment

Make Payment Screen

Processing Payment

Processing Payment Screen

Payment Failure

Payment Failure Screen

Payment Success

Payment Success Screen

License

MIT License

Copyright (c) 2022 Algy Ali

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

GitHub

link
Stars: 15
Last commit: 1 year ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

v0.1.0
2 years ago
  • Initial release
  • C2B API Call

Full Changelog: https://github.com/Algy-Jr12/MpesaSDK/commits/v0.1.0

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics