Skip to content

mutiadavid/AfricasTalkingGateway

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Golang AfricasTalking gateway implementation

More info GoDoc

Quick Start

Download and install
go get github.com/davidmutia47/AfricasTalkingGateway

Example Sending SMS

Create file sendSms.go
package main

import (
	"github.com/davidmutia47/AfricasTalkingGateway"
	"fmt"
	)

func main(){
    // Specify your login credentials
    username := "username"
    apiKey := "apikey"

    // Specify the numbers that you want to send to in a comma-separated list
    // Please ensure you include the country code (+254 for Kenya in this case)
    recipients := "+25470+++++++,+25475++++++";
    // And of course we want our recipients to know what we really do
    message := "Hello, world";

    //Create instance of getWay
    getWay := AfricasTalkingGateway.AfricasTalkingGateway(username,apikey)

    //sandbox
    //getWay := AfricasTalkingGateway.AfricasTalkingGateway(username,apikey,"sandbox")

    //call sendMessage to handle sending the message
    response,err := getWay.sendMessage(recipients,message)

    //handle errors if encountered an error
    if err!=nil{
    	//handle error
    }

    for _,receipient :=range response{
    	//get receipient data
    	//type assert to ensure receipient is a map
    	r:= receipient.(map[string]interface{})
    	fmt.Println("number :",r[number],"status :",r["status"])
    }


}

Features

  • SMS ------------------------------------------------>Documentation
    • Sending sms
    • Fetching sms
  • Sbscriptions --------------------------------------->Documentation
    • Creating subscription
    • Deleting subscription
    • Fetching subscriptions
  • Voice ---------------------------------------------->Documentation
    • Making a call
    • Fetching queued calls
    • Uploading media file
  • Airtime - buying airtime for a number -------------->Documentation
  • Mpesa payments ------------------------------------->Documentation
    • B2C
    • B2B
    • C2B

Documentation

LICENSE

licensed under BSD-style license

About

Golang implementation for AfricasTalking Api

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages