mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-23 13:19:56 +09:00
Add CoolSMS PHP SDK, and update Composer dependencies
This commit is contained in:
parent
40c43e8fa0
commit
c719fc0500
242 changed files with 3487 additions and 28983 deletions
31
vendor/coolsms/php-sdk/examples/image/example_delete_images.php
vendored
Normal file
31
vendor/coolsms/php-sdk/examples/image/example_delete_images.php
vendored
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
/**
|
||||
* #example_delete_images
|
||||
*
|
||||
* This sample code demonstrate how to delete images 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_ids are mandatory. must be filled
|
||||
$image_ids = ''; // image ids. ex)'IM34BWIDJ12','IMG2559GBB'
|
||||
|
||||
$result = $rest->deleteImages($image_ids);
|
||||
print_r($result);
|
||||
} catch(CoolsmsException $e) {
|
||||
echo $e->getMessage(); // get error message
|
||||
echo $e->getCode(); // get error code
|
||||
}
|
||||
31
vendor/coolsms/php-sdk/examples/image/example_get_image_info.php
vendored
Normal file
31
vendor/coolsms/php-sdk/examples/image/example_get_image_info.php
vendored
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
/**
|
||||
* #example_image_info
|
||||
*
|
||||
* This sample code demonstrate how to check image info 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_id are mandatory. must be filled
|
||||
$image_id = ''; // image id
|
||||
|
||||
$result = $rest->getImageInfo($image_id);
|
||||
print_r($result);
|
||||
} catch(CoolsmsException $e) {
|
||||
echo $e->getMessage(); // get error message
|
||||
echo $e->getCode(); // get error code
|
||||
}
|
||||
32
vendor/coolsms/php-sdk/examples/image/example_get_image_list.php
vendored
Normal file
32
vendor/coolsms/php-sdk/examples/image/example_get_image_list.php
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
/**
|
||||
* #example_image_list
|
||||
*
|
||||
* This sample code demonstrate how to check image list 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);
|
||||
|
||||
// Optional parameters for your own needs
|
||||
$offset = 0; // default 0
|
||||
$limit = 20; // default 20
|
||||
|
||||
$result = $rest->getImageList($offset, $limit);
|
||||
print_r($result);
|
||||
} catch(CoolsmsException $e) {
|
||||
echo $e->getMessage(); // get error message
|
||||
echo $e->getCode(); // get error code
|
||||
}
|
||||
34
vendor/coolsms/php-sdk/examples/image/example_upload_image.php
vendored
Normal file
34
vendor/coolsms/php-sdk/examples/image/example_upload_image.php
vendored
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<?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
|
||||
}
|
||||
BIN
vendor/coolsms/php-sdk/examples/image/images/test.jpg
vendored
Normal file
BIN
vendor/coolsms/php-sdk/examples/image/images/test.jpg
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.5 KiB |
Loading…
Add table
Add a link
Reference in a new issue