M-Pesa SDK for Go is an unofficial library aiming to help businesses integrating every M-Pesa operations to their Go applications.
- Features
- Usage
- Prerequisites
- Installation
- Configuration
- Related Projects
- Contributing
- Changelog
- Authors
- Credits
- License
- Receive money from a mobile account to a business account
- Send money from a business account to a mobile account
- Send money from a business account to a another business account
- Revert a transaction
- Query the status of a transaction
import (
mpesa "github.com/paymentsds/mpesa-go-sdk/pkg/mpesa"
options "github.com/paymentsds/mpesa-go-sdk/pkg/mpesa/options"
environment "github.com/paymentsds/mpesa-go-sdk/pkg/mpesa/environment"
)
client := mpesa.NewClient(
options.WithApiKey("<REPLACE>"),
options.WithPublicKey("<REPLACE>"),
options.WithTimeout(0),
options.WithAccessToken("<REPLACE>"),
options.WithServiceProviderCode("<REPLACE>"),
options.WithSecurityCredential("<REPLACE>"),
options.InitiatorIdentifier("<REPLACE>"),
options.WithEnvironment(environment.SANDBOX),
)
intent := mpesa.NewIntent(
options.To("<REPLACE>"),
options.From("<REPLACE>"),
options.WithReference("<REPLACE>"),
options.WithTransaction("<REPLACE>"),
options.WithAmount(10),
)
if response, err := client.Receive(intent); err != nil {
// Handle failure scenarion
} else {
// Handle success scenarion
}
go get -u github.com/paymentsds/mpesa-go-sdk
Copyright 2020 Edson Michaque
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.