zalopage/zalo-sdk-php

Zalo Page PHP SDK.

dev-master 2016-02-17 07:04 UTC

This package is not auto-updated.

Last update: 2024-04-23 18:13:17 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: