rhymix/vendor/coolsms/php-sdk/examples/image/example_upload_image.php

34 lines
959 B
PHP

<?php
/**
* #example_upload_image
*
* This sample code demonstrate how to upload image through CoolSMS Rest API PHP
* for more info, visit
* www.coolsms.co.kr
*/
use Nurigo\Api\Image;
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 Image($api_key, $api_secret);
// image are mandatory. must be filled
$image = 'images/test.jpg'; // image
// Optional parameters for your own needs
// $encoding = 'binary'; // image encoding type (base64, binary) default binary
$result = $rest->uploadImage($image); // or $rest->uploadImage($image, $encoding)
print_r($result);
} catch(CoolsmsException $e) {
echo $e->getMessage(); // get error message
echo $e->getCode(); // get error code
}