Download the PHP package mtn-sms/mtn-bulksms-php-sdk without Composer
On this page you can find all versions of the php package mtn-sms/mtn-bulksms-php-sdk. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package mtn-bulksms-php-sdk
MTN API SDK
Overview
The MTN API SDK provides a PHP wrapper for interacting with the MTN Short Message Service (SMS) API. This SDK simplifies the process of sending outbound SMS messages, managing subscriptions, and handling exceptions.
Installation
You can install the MTN API SDK via Composer. Run the following command in your project directory:
Usage
1. Obtain Access Token
Before using the SDK, you need to obtain an access token using the provided Client Credentials OAuth Flow. You can do this by making a POST request to the token URL with your client credentials.
Replace $clientId
and $clientSecret
with your actual client credentials.
2. Sending SMS
To send an SMS message, use the SmsSender
class.
3. Managing Subscriptions
You can manage subscriptions using the SubscriptionManager
class.
3.1 Subscribe
3.2 Update Subscription
3.3 Delete Subscription
4. Handling Exceptions
The SDK throws ApiException
in case of errors. You can catch and handle these exceptions as follows:
Adding Credentials
You should store your client credentials securely. It's recommended to use environment variables or a configuration file to store sensitive information.
Using Environment Variables
You can set environment variables in your .env
file:
Then, you can access these variables in your code:
Using Configuration File
You can store your credentials in a configuration file (e.g., config.php
):
Then, include this file in your code:
Example Test
Here's an example script that demonstrates how to use the MTN API SDK to send an SMS message:
Make sure to replace your-client-id
and your-client-secret
with your actual MTN client credentials. Additionally, ensure you have set up your environment variables or configuration file to securely store your credentials.
To test this example:
- Save the script to a file (e.g.,
send_sms_example.php
). - Set up your client credentials either via environment variables or a configuration file.
- Run the script using PHP:
This script will obtain an access token, send an SMS message using the MTN API SDK, and print the response or handle any exceptions that occur during the process. Adjust the SMS details and error handling as needed for your use case.
Contributing
Contributions are welcome! If you find any issues or have suggestions for improvements, please create a pull request or open an issue on GitHub.
License
This SDK is open-source and available under the MIT License. See the LICENSE file for details.