Fetch the repository succeeded.
This SDK is to help the developer to quickly connect to the QR Master Access Management System.
$ composer require uclbrt/api-sdk
use uclbrt\Key;
...
try{
$key = new Key([
'accountSid' => 'your account sid from QR Master',
'authToken' => 'your auth token from QR Master',
]);
$key->setCommunityNo('your community No. from QR Master');
$key->setCommunityTimezone('Timezone set in the information of community of QR Master, eg: Asia/Shanghai, Etc/GMT-8');
$cardNo = $key->createRoomKey($mobile, $areaCode, $roomNo, $floorNo, $buildNo);
}
catch (Exception $e)
{
// Your wrong operation
}
...
The MIT License (MIT).For more information, please refer to License code.
Sign in for post a comment
Comments ( 0 )