1. Go to this page and download the library: Download roamtech/gateway-api 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/ */
use GuzzleHttp\Client;
use Roamtech\Gateway\Engine\Core;
use Roamtech\Gateway\Native\NativeCache;
use Roamtech\Gateway\Native\NativeConfig;
use Roamtech\Gateway\Client as GatewayClient;
ore($client, $config, new NativeCache($config));
$gateway = new GatewayClient($core);
$gateway = resolve('roamtech.client');
// Or Type hint it in method definitions
use Roamtech\Gateway\Client as GatewayClient;
class Mycontroller extends Controller {
/**
* @var GatewayClient
*/
private $apiClient;
/**
* Inject client in constructor
*
* @param GatewayClient $apiClient
*/
public function __construct(GatewayClient $apiClient)
{
$this->apiClient = $apiClient;
}
}
$messages = [
['recipient' => '25472xxxxxxx', 'message' => 'This is a test message'],
['recipient' => '25471xxxxxxx', 'message' => 'This is a a custom message']
];
// Using the gateway instance we can now invoke the API with our payload
$response = $gateway->sms()->sendBulkMessages($messages, ['from' => 'YourSenderId']);
var_dump($response);
$recipients = ['25472xxxxxxx', '25471xxxxxxx'];
$message = 'A test message to say hello';
$options = [
'from' => 'YourSenderId'
'messageId' => '345623',
'callback' => 'http://yoursite.com/sms/callback/345623',
];
// Let us send our message
$response = $gateway->sms()->sendMessage($message, $recipients, $options);
var_dump($response);