yungzhu / flutter_link_preview

This is a Flutter URL preview plugin for Flutter that previews the content of a URL
MIT License
69 stars 63 forks source link

Cannot preview Youtube urls #7

Open imcouri opened 3 years ago

imcouri commented 3 years ago

i don't know if it's just me or others have this issue, but I can't fetch info about any video on yt, youtube.com and other websites work, but video urls don't does anyone else have this issue?

jaceshim commented 3 years ago

i got a same problem.

sarinupreti commented 3 years ago

@jaceshim did not work i referenced your commit still the image is not being fetched.

kunalmanocha98 commented 3 years ago

Short links are not visible

jvinicius66 commented 3 years ago

You can use 'https://www.youtube.com/oembed?url=$link&format=json' to get metadata.

Simulator Screen Shot - iPhone 8 - 2021-05-16 at 23 15 09

asmodeoux commented 3 years ago

You can convert short links to full ones:

if (urlText.contains("youtu.be/")) {
        urlText = urlText.replaceAll(
                "youtu.be/",
                "youtube.com/watch?v=");
}