open-southeners/carbone-sdk
最新稳定版本:2.0.0
Composer 安装命令:
composer require open-southeners/carbone-sdk
包简介
Unofficial port of the Carbone API SDK to Saloon v3
关键字:
README 文档
README
Unofficial port of the Carbone API SDK to Saloon v3
Getting started
composer require open-southeners/carbone-sdk
Laravel installation
To make this work within a Laravel app you just need to add the following at the very bottom of your .env file:
CARBONE_API_KEY='your-carbone-api-key'
To customise the API version and more you can simply add carbone array item to the config/services.php:
<?php return [ // rest of services.php items here... 'carbone' => [ 'key' => env('CARBONE_API_KEY', ''), 'version' => '4', ], ];
Usage
Within Laravel you've it injected into your application's container:
$response = app('carbone')->template()->base64Upload($templateBase64); if ($response->failed()) { throw new \Exception('Template upload failed!'); } // This is extracted from official Carbone SDK: https://carbone.io/api-reference.html#upload-a-template-carbone-cloud-sdk-php $templateId = $response->getTemplateId();
Any other framework (or not)
If you are using another framework (or just pure PHP), you can still use this as a standalone library:
$carbone = new Carbone('your-carbone-api-key'); // Use this if you want to use a different API version: https://carbone.io/api-reference.html#api-version // $carbone = new Carbone('your-carbone-api-key', '4'); $templateBase64 = base64_encode(file_get_contents('path_to_your_template_here')); $response = $carbone->template()->base64Upload($templateBase64); if ($response->failed()) { throw new \Exception('Template upload failed!'); } // This is extracted from official Carbone SDK: https://carbone.io/api-reference.html#upload-a-template-carbone-cloud-sdk-php $templateId = $response->getTemplateId();
Differences between official SDK and this
- Full Laravel support (optionally as this supports any framework or even raw PHP)
- Use of Saloon v3 not the v1 (which improves at everything typed for better IDE autocompletion support, etc)
- Replaced the
template()->upload()method withtemplate()->base64Upload()so the upload method can be used to sendmultipart/form-dataPOST request instead of aapplication/jsonwith all the file contents base64 encoded - Added
template()->exists()to get if template with ID exists in Carbone (just a HEAD request so no content fetch at all) - Added
status()->fetch()to get status (not currently publicly documented, only on the OpenAPI, Postman, etc. Can check them here)
You can still check the official one here.
Partners
License
This package is open-sourced software licensed under the MIT license.
统计信息
- 总下载量: 1.24k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-12-26
