merturk/vimeo-php-lib

Vimeo Php Lib

dev-master 2013-03-27 12:04 UTC

This package is not auto-updated.

Last update: 2024-04-13 13:09:39 UTC


README

Added namespace support to Official vimeo-php-lib.

Install

Install with composer

"merturk/vimeo-php-lib": "dev-master"

Usage

$vimeo = new \MAE\Vimeo('api', 'secret', 'token', 'token_secret');

 $response = $vimeo->call(
            'vimeo.channels.getAll',
            array(
                'format' => 'json',
                'method' => 'vimeo.channels.getAll',
                'page' => '1',
                'per_page' => '50',
                'sort' => 'alphabetical'
            )
        );

 echo $response;