cloudinary / media-delivery-api
Media Delivery API
0.1.1-beta
2022-08-01 20:21 UTC
Requires
- php: >=7.3.0
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- guzzlehttp/guzzle: ^7.3
- guzzlehttp/psr7: ^1.7 || ^2.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.12
- phpunit/phpunit: ^8.0 || ^9.0
This package is not auto-updated.
Last update: 2024-11-06 04:59:35 UTC
README
Media Delivery API
For more information, please visit https://cloudinary.com.
Installation & Usage
Requirements
PHP 7.3 and later.
Composer
To install the bindings via Composer, add the following to composer.json
:
{ "require": { "cloudinary/media-delivery-api": "*" } }
Then run composer install
Manual Installation
Download the files and include autoload.php
:
<?php require_once('/path/to/media-delivery-api/vendor/autoload.php');
Getting Started
Please follow the installation procedure and then run the following:
<?php require_once(__DIR__ . '/vendor/autoload.php'); // Configure Cloudinary URL: basicAuth $config = Cloudinary\MediaDelivery\Configuration::getDefaultConfiguration() ->setCloudinaryUrl('cloudinary://key:secret@cloud_name'); $apiInstance = new Cloudinary\MediaDelivery\Api\CacheApi(null, $config); $cache_invalidate_request_payload = new \Cloudinary\MediaDelivery\Model\CacheInvalidateRequestPayload(); // \Cloudinary\MediaDelivery\Model\CacheInvalidateRequestPayload | Payload to invalidate the cache try { $apiInstance->invalidate($cache_invalidate_request_payload); } catch (Exception $e) { echo 'Exception when calling CacheApi->invalidate: ', $e->getMessage(), PHP_EOL; }
API Endpoints
All URIs are relative to https://api.cloudinary.com/v2/demo
Models
- CacheInvalidateAsset
- CacheInvalidateMediaResource
- CacheInvalidateRequestPayload
- CacheWarmupRequestPayload
- CacheWarmupSuccessResponse
- DeliveryProfile
- DeliveryProfileCreatePayload
- DeliveryProfileUpdatePayload
- ErrorMessageResponse
- MappingFunction
- MappingFunctionCreatePayload
- MappingFunctionUpdatePayload
- MediaSource
- MediaSourceAllOf
- MediaSourceConfig
- MediaSourceCreatePayload
- MediaSourceUpdatePayload
- MediaTarget
- MediaTargetConfig
- MediaTargetCreatePayload
- MediaTargetUpdatePayload
- MessageResponse
Authorization
basicAuth
- Type: HTTP basic authentication
bearerAuth
- Type: Bearer authentication (JWT)
Tests
To run the tests, use:
composer install vendor/bin/phpunit
Author
About this package
This Cloudinary PHP package is automatically generated.
- API version:
0.1.0-beta
- Build package:
org.openapitools.codegen.languages.PhpClientCodegen