Logo Lanfrica

rwema3/Africa-s-Talking-APIs

Domaine:

digital infrastructure

Type de record:

software
Créateur:
rwe
Hôte:
# Africa's Talking C# Final Year Project The Africa's Talking C# API wrapper provides convenient access to the Africa's Talking API from applications written in C#. With support for .NET45, .NET46 and .NET Core 2 + ## The Documentation Take a look at the API docs here for more information. ## Installation Options 1. #### Using Visual Studio IDE + On a new project, Navigate to the ***Solution Explorer*** tab within Visual Studio. + Right-click on the ***References*** node and click on the *Manage Nuget Packages* from the resulting context menu. + On the Nuget Package Manager window navigate to the ***Browse*** Tab. + Key in **AfricasTalking.NET** and select version _1.2.3_ or higher. + Click on the ***Install*** button and accept the licences to proceed. > For .NET Standard 2.0 projects warngings may appear on your solution items,note that these are warnings due to deprecated support for some packages used by the wrapper.These will be reviewed in future release. These can be safely ignored. > > For more info on this follow this thread and this link . 2. #### Using .NET CLI + From the _command prompt/powershell window_ opened in your project directory, key in the following and press *Enter*. ```powershell dotnet add package AfricasTalking.NET --version 1.2.3 ``` > Ensure you have the latest version of the package. Visit Nuget for more info on the latest release of this package. 3. #### Using Nuget Package Manger Console + On your Nuget package manager console,key in the following and press *Enter* ```powershell Install-Package AfricasTalking.NET -Version 1.2.3 ``` > Ensure you have the latest version of the package. Visit Nuget for more info on the latest release of this package ## Usage + To use this package ensure you add the following `using` statement to your project file: ```csharp using AfricasTalkingCS; ``` The package needs to be configured with your Africa's Talking username and API key (which you can get from the dashboard). ```csharp const …

Licenses