mikuni-labo / videocloudy
This library is Manipulate the VideoCloud API for PHP.
Installs: 573
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/mikuni-labo/videocloudy
Requires
- php: >=5.4.0
- mikuni-labo/curly: ^1.0.0
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2025-10-12 07:04:23 UTC
README
This library is Manipulate the VideoCloud API for PHP.
Installation
With Composer
$ composer require mikuni-labo/videocloudy
{ "require": { "mikuni-labo/videocloudy": "^1.0.0" } }
Example
<?php require 'vendor/autoload.php'; use MikuniLabo\VideoCloudy\VideoCloudy; $vc = new VideoCloudy; $vc->setAccountId( '0000000000000' ); // Account ID $vc->setClientId( 'xxxxxxxx-yyyy-zzzz-aaaa-bbbbbbb' );// Client ID $vc->setClientSecret( 'xxxxxxxxxxxxxxxxxxxxxxxxx' ); // Client Secret $vc->setVideoProfile( 'your-profile' ); // Video Profile $vc->setCallbackUrl( 'http://your-callback-url/' ); // Callback URL $vc->authenticate(); print_r( $vc->getVideos() );