0
How to know which network a video belongs through the youtube api?
0
How to know which network a video belongs through the youtube api?
4
I can’t tell you if the API has this information but one way to get it is through the meta tag attribution
that has the information of which network the channel is part of.
To recover this information using PHP:
$tags = get_meta_tags("http://www.youtube.com/watch?v=_8AZT40gH5E");
echo $network = $tags['attribution']; // Endemol_beyond_Brasil
Exactly what I needed! Thank you
Mark as response. :)
Browser other questions tagged api youtube youtube-api
You are not signed in. Login or sign up in order to post.
What do you mean? What is a video network? In what programming language are you trying to do this? What have you been able to do/get? Please edit the question to provide more details, otherwise no one will be able to help you.
– Luiz Vieira