You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New option to the html provider: externalImages#133
Removed deprecated oembed providers: Oembed\Yfrog and Oembed\Soundcloud
Added the ability to access to the requests headers #123:
$info = Embed::create($url);
//access to the main request headers$headers = $info->getRequest()->getHeaders();
//access to the images requests headersforeach ($info->getImagesRequests() as$request) {
$request->getHeaders();
}