PHP code example of unicodeveloper / jusibe-php-lib
1. Go to this page and download the library: Download unicodeveloper/jusibe-php-lib library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
unicodeveloper / jusibe-php-lib example snippets
/**
* Send SMS using the Jusibe API
* @param array $payload
* @return object
*/
$jusibe->sendSMS($payload)->getResponse();
/**
* Send Bulk SMS using the Jusibe API
* @param array $payload
* @return object
*/
$jusibe->sendBulkSMS($payload)->getResponse();
/**
* Check the available SMS credits left in your Jusibe account
* @return object
*/
$jusibe->checkAvailableCredits()->getResponse();
/**
* Check the delivery status of a sent SMS
* @param string $messageID
* @return object
*/
$jusibe->checkDeliveryStatus('8nb1wrgdjw')->getResponse();
/**
* Check the delivery status of a sent Bulk SMS
* @param string $bulkID
* @return object
*/
$jusibe->checkBulkDeliveryStatus('8nb1wrgdjw')->getResponse();
// include your composer dependencies
y = 'xxxxxxxxxxxxxx';
$accessToken = 'xxxxxxxxxxxxxx';
$jusibe = new Jusibe($publicKey, $accessToken);
$message = "I LOVE YOU, BABY";
$payload = [
'to' => '7079740987',
'from' => 'PROSPER DATING NETWORK',
'message' => $message
];
try {
$response = $jusibe->sendSMS($payload)->getResponse();
print_r($response);
} catch(Exception $e) {
echo $e->getMessage();
}
// include your composer dependencies
y = 'xxxxxxxxxxxxxx';
$accessToken = 'xxxxxxxxxxxxxx';
$jusibe = new Jusibe($publicKey, $accessToken);
$message = "You are invited for party!!!";
$payload = [
'to' => '7079740987,8077139164',
'from' => 'DOZIE GROUP',
'message' => $message
];
try {
$response = $jusibe->sendBulkSMS($payload)->getResponse();
print_r($response);
} catch(Exception $e) {
echo $e->getMessage();
}
// include your composer dependencies
y = 'xxxxxxxxxxxxxx';
$accessToken = 'xxxxxxxxxxxxxx';
$jusibe = new Jusibe($publicKey, $accessToken);
try {
$response = $jusibe->checkAvailableCredits()->getResponse();
print_r($response);
} catch(Exception $e) {
echo $e->getMessage();
}
// include your composer dependencies
y = 'xxxxxxxxxxxxxx';
$accessToken = 'xxxxxxxxxxxxxx';
$jusibe = new Jusibe($publicKey, $accessToken);
try {
$response = $jusibe->checkDeliveryStatus('8nb1wrgdjw')->getResponse();
print_r($response);
} catch(Exception $e) {
echo $e->getMessage();
}
// include your composer dependencies
y = 'xxxxxxxxxxxxxx';
$accessToken = 'xxxxxxxxxxxxxx';
$jusibe = new Jusibe($publicKey, $accessToken);
try {
$response = $jusibe->checkBulkDeliveryStatus('n2v9gby1jy')->getResponse();
print_r($response);
} catch(Exception $e) {
echo $e->getMessage();
}
"unicodeveloper/jusibe-php-lib": "1.0.*"
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.