PHP code example of apistd / uni-sdk
1. Go to this page and download the library: Download apistd/uni-sdk 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/ */
apistd / uni-sdk example snippets
use Uni\Common\UniException;
use Uni\SMS\UniSMS;
// 初始化
$client = new UniSMS([
'accessKeyId' => 'your access key id',
'accessKeySecret' => 'your access key secret'
]);
// 发送短信
try {
$resp = $client->send([
'to' => 'your phone number',
'signature' => 'UniSMS',
'templateId' => 'login_tmpl',
'templateData' => [
'code' => 7777
]
]);
var_dump($resp->data);
} catch (UniException $e) {
print_r($e);
}