zalopage / zalo-sdk-php
Zalo Page PHP SDK.
dev-master
2016-02-17 07:04 UTC
Requires
- guzzle/guzzle: 3.7.*
This package is not auto-updated.
Last update: 2025-01-14 21:32:38 UTC
README
Installation
Using Composer
php composer.phar require zalopage/zalo-sdk-php
Example
try {
$factory = new ZaloServiceFactory($pageId, $secretKey);
$messageService = $factory->getZaloMessageService();
$zaloPageResult = $messageService->sendTextMessageByPhoneNum($phone, $message, $sms, $isNotify);
if ($zaloPageResult >= 0) {
echo "Success";
}
} catch (ZaloSdkException $ex) {
$error['code'] = $ex->getZaloSdkExceptionErrorCode();
$error['message'] = $ex->getZaloSdkExceptionMessage();
} catch (\Exception $ex) {
$error['code'] = 500;
$error['message'] = $ex->getMessage();
}
Credits: