PHP code example of xsme / php-api-metroport-sms
1. Go to this page and download the library: Download xsme/php-api-metroport-sms 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/ */
xsme / php-api-metroport-sms example snippets
// $location - uzyskujemy z Metroport
// $username - uzyskujemy z Metroport
// $password - uzyskujemy z Metroport
$sms = new SMSApi($location, $username, $password)
// Wysylanie wiadomosci SMS
$test = $sms->postSms('48500600700', "testowa wiadomosc", '48500600700');
// Lista dostępnych numerów, true - tylko losowe / false - tylko statyczne
$test = $sms->getNumbers(false);
// Sprawdzanie statusu SMS, jako paramert podajemy ID wczesniej wyslanego SMSa
$test = $sms->getSms(663214);
// Pobranie listy wykupionych usług
$test = $sms->getServices();