mpratt / Embera

A Oembed consumer library, that gives you information about urls. It helps you replace urls to youtube or vimeo for example, with their html embed code. It has advanced features like offline support, responsive embeds and caching support.
MIT License
335 stars 59 forks source link

Broken/Unsupported Providers #78

Closed billtomczak closed 3 years ago

billtomczak commented 3 years ago

This is more a heads up than anything else.

We're just ignoring these in our implementation, so it's not a big deal.

mpratt commented 3 years ago

Hi @billtomczak Thanks for the info. I already knew about Hulu and Twitch. I just comitted a new update where I cleaned a little the provider list.

However, Meetup seems to be working on my end. The html response is not an Iframe, but raw html. Take this oembed response for example: https://api.meetup.com/oembed?format=json&url=https://www.meetup.com/kubernetes-Bogota-Group/events/274276177

Sketchfab is also working for me: https://sketchfab.com/oembed?format=json&url=https://sketchfab.com/3d-models/gothic-building-for-aria-pack-10-4c00c5e9a9a14388bd58ab9f87f0637b The thing with Sketchfab is that you need the direct link in order to embed it. You get it from the address bar of your browser.

And Finally, Wordpress, I need to think about it, since it technically works, but someone has a Blog on the wordpress.com plataform and is using a custom domain, the provider is not going to work. The user has to extend the wordpress provider and add it's own host and register it on the ProviderCollection and then inject it into Embera... That seems a little too complicated for something that should be simple..

Perhaps adding a new method like Wordpress::registerHost('rarasaur.com'); could query the service as in: https://public-api.wordpress.com/oembed/?url=https://rarasaur.com/2020/08/01/g2-how-to-heal/&for=embera

mpratt commented 3 years ago

Yeah, I just pushed a new update that allows adding new hosts to a single provider on the fly. By doing this, the wordpress provider allows stuff like this.

use Embera\Embera;
use Embera\Provider\Wordpress;

Wordpress::addHost('rarasaur.com');
$embera = new Embera();
echo $embera->autoEmbed('https://rarasaur.com/2020/08/01/g2-how-to-heal/');

Since I'm looking into a new way to generate automatically the provider documentation, I'll be adding This info once I'ts done.

billtomczak commented 3 years ago

Thanks Michael;

I can confirm the meetup link works. Guess I just didn't have a meetup page that could be accessed via oembed.

Using the link you provided for Sketchfab still doesn't work for me. Gives me a 404 not found response

I'll look into the Wordpress update. That would definitely make that provider more useful.