mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
31 lines
829 B
PHP
31 lines
829 B
PHP
<?php
|
|
/**
|
|
* #example_send
|
|
*
|
|
* This sample code demonstrate how to send group sms through CoolSMS Rest API PHP
|
|
* for more info, visit
|
|
* www.coolsms.co.kr
|
|
*/
|
|
|
|
use Nurigo\Api\GroupMessage;
|
|
use Nurigo\Exceptions\CoolsmsException;
|
|
|
|
require_once __DIR__ . "/../../bootstrap.php";
|
|
|
|
// api_key and api_secret can be obtained from www.coolsms.co.kr/credentials
|
|
$api_key = '#ENTER_YOUR_OWN#';
|
|
$api_secret = '#ENTER_YOUR_OWN#';
|
|
|
|
try {
|
|
// initiate rest api sdk object
|
|
$rest = new GroupMessage($api_key, $api_secret);
|
|
|
|
// group_id are mandatory. must be filled
|
|
$group_id = 'GID56CC00E21C4DC'; // group id. ex) '1GCOLS23BDG'
|
|
|
|
$result = $rest->sendGroupMessage($group_id);
|
|
print_r($result);
|
|
} catch(CoolsmsException $e) {
|
|
echo $e->getMessage(); // get error message
|
|
echo $e->getCode(); // get error code
|
|
}
|