PHP oEmbed consumer library
, (*1)
Simple consumer library for oEmbed with discovery support., (*2)
Usage
In this example the library automatically discovers the oEmbed enpoint for the http://vimeo.com/31423544
resource, and asks for informations about the resource., (*3)
``` php
<?php, (*4)
use Alb\OEmbed;, (*5)
$response = OEmbed\Simple::request('http://vimeo.com/31423544', array(
'maxwidth' => 400,
'maxheight' => 300,
));, (*6)
echo $response->getTitle();
echo $response->getHtml();, (*7)
### Advanced usage:
``` php
<?php
use Alb\OEmbed;
// instanciate a Provider from a known endpoint
$provider = new OEmbed\Provider('http://vimeo.com/api/oembed.json', 'json');
// request information about a resource
$response = $provider->request('http://vimeo.com/31423544');
The library is also capable of discovering the oEmbed enpoint from a resource URL (if the site supports it):, (*8)
``` php
<?php, (*9)
use Alb\OEmbed;, (*10)
$discovery = new OEmbed\Discovery;
$provider = $discovery->discover('http://vimeo.com/31423544');, (*11)
// or, using OEmbed\Simple:, (*12)
$provider = OEmbed\Simple::getProvider('http://vimeo.com/31423544');
```, (*13)